Files
LEANN/packages/leann-backend-diskann/third_party/DiskANN/include/exceptions.h
yichuan520030910320 46f6cc100b Initial commit
2025-06-30 09:05:05 +00:00

18 lines
341 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
#include <stdexcept>
namespace diskann
{
class NotImplementedException : public std::logic_error
{
public:
NotImplementedException() : std::logic_error("Function not yet implemented.")
{
}
};
} // namespace diskann