3.3.9.5.1.1. Program Listing for File exception.hΒΆ
- Return to documentation for File exception.h
#ifndef SIRIUS_EXCEPTION_H_
#define SIRIUS_EXCEPTION_H_
#include <stdexcept>
namespace sirius {
class Exception : public std::runtime_error {
using std::runtime_error::runtime_error;
};
} // namespace sirius
#endif // SIRIUS_EXCEPTION_H_