Skip to content

Commit 274df18

Browse files
committed
remove password exception
1 parent 501ec6c commit 274df18

2 files changed

Lines changed: 0 additions & 7 deletions

File tree

src/odr/exceptions.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,6 @@ UnsupportedEndian::UnsupportedEndian()
6565
MsUnsupportedCryptoAlgorithm::MsUnsupportedCryptoAlgorithm()
6666
: std::runtime_error("unsupported crypto algorithm") {}
6767

68-
WrongPassword::WrongPassword() : std::runtime_error("wrong password") {}
69-
7068
UnknownDocumentType::UnknownDocumentType()
7169
: std::runtime_error("unknown document type") {}
7270

src/odr/exceptions.hpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -137,11 +137,6 @@ struct MsUnsupportedCryptoAlgorithm final : public std::runtime_error {
137137
MsUnsupportedCryptoAlgorithm();
138138
};
139139

140-
/// @brief Wrong password exception
141-
struct WrongPassword final : public std::runtime_error {
142-
WrongPassword();
143-
};
144-
145140
/// @brief Unknown document type exception
146141
struct UnknownDocumentType final : public std::runtime_error {
147142
UnknownDocumentType();

0 commit comments

Comments
 (0)