diff options
Diffstat (limited to 'crypt/cryptexception.cpp')
| -rw-r--r-- | crypt/cryptexception.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypt/cryptexception.cpp b/crypt/cryptexception.cpp index 4cf2e6c..d839029 100644 --- a/crypt/cryptexception.cpp +++ b/crypt/cryptexception.cpp @@ -1,6 +1,6 @@ #include "cryptexception.h" -CryptException::CryptException(std::string what, int returnCode) +CryptException::CryptException(std::string what, ReturnCode returnCode) :exception() { this->whatMsg = what; @@ -17,7 +17,7 @@ const char *CryptException::what() const throw() return whatMsg.c_str(); } -int CryptException::returnCode() const +CryptException::ReturnCode CryptException::returnCode() const { return retId; } |
