HdfException.cpp 456 B

123456789101112131415161718192021
  1. //
  2. // Created by patrik on 22.08.17.
  3. //
  4. #include <hdf4cpp/HdfException.h>
  5. hdf4cpp::Type hdf4cpp::HdfException::getType() const noexcept {
  6. return type;
  7. }
  8. hdf4cpp::ClassType hdf4cpp::HdfException::getClassType() const noexcept {
  9. return classType;
  10. }
  11. hdf4cpp::ExceptionType hdf4cpp::HdfException::getExceptionType() const noexcept {
  12. return exceptionType;
  13. }
  14. std::string hdf4cpp::HdfException::getMessage() const noexcept {
  15. return message;
  16. }