Initial commit
This commit is contained in:
17
packages/leann-backend-diskann/third_party/DiskANN/include/exceptions.h
vendored
Normal file
17
packages/leann-backend-diskann/third_party/DiskANN/include/exceptions.h
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
// 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
|
||||
Reference in New Issue
Block a user