LSST Applications  21.0.0-147-g0e635eb1+1acddb5be5,22.0.0+052faf71bd,22.0.0+1ea9a8b2b2,22.0.0+6312710a6c,22.0.0+729191ecac,22.0.0+7589c3a021,22.0.0+9f079a9461,22.0.1-1-g7d6de66+b8044ec9de,22.0.1-1-g87000a6+536b1ee016,22.0.1-1-g8e32f31+6312710a6c,22.0.1-10-gd060f87+016f7cdc03,22.0.1-12-g9c3108e+df145f6f68,22.0.1-16-g314fa6d+c825727ab8,22.0.1-19-g93a5c75+d23f2fb6d8,22.0.1-19-gb93eaa13+aab3ef7709,22.0.1-2-g8ef0a89+b8044ec9de,22.0.1-2-g92698f7+9f079a9461,22.0.1-2-ga9b0f51+052faf71bd,22.0.1-2-gac51dbf+052faf71bd,22.0.1-2-gb66926d+6312710a6c,22.0.1-2-gcb770ba+09e3807989,22.0.1-20-g32debb5+b8044ec9de,22.0.1-23-gc2439a9a+fb0756638e,22.0.1-3-g496fd5d+09117f784f,22.0.1-3-g59f966b+1e6ba2c031,22.0.1-3-g849a1b8+f8b568069f,22.0.1-3-gaaec9c0+c5c846a8b1,22.0.1-32-g5ddfab5d3+60ce4897b0,22.0.1-4-g037fbe1+64e601228d,22.0.1-4-g8623105+b8044ec9de,22.0.1-5-g096abc9+d18c45d440,22.0.1-5-g15c806e+57f5c03693,22.0.1-7-gba73697+57f5c03693,master-g6e05de7fdc+c1283a92b8,master-g72cdda8301+729191ecac,w.2021.39
LSST Data Management Base Package
Namespaces | Classes | Typedefs | Functions
lsst::pex::exceptions Namespace Reference

Namespaces

 python
 
 version
 
 wrappers
 

Classes

struct  Tracepoint
 One point in the Traceback vector held by Exception. More...
 
class  Exception
 Provides consistent interface for LSST exceptions. More...
 
class  LogicError
 Reports errors in the logical structure of the program. More...
 
class  DomainError
 Reports arguments outside the domain of an operation. More...
 
class  InvalidParameterError
 Reports invalid arguments. More...
 
class  LengthError
 Reports attempts to exceed implementation-defined length limits for some classes. More...
 
class  OutOfRangeError
 Reports attempts to access elements outside a valid range of indices. More...
 
class  RuntimeError
 Reports errors that are due to events beyond the control of the program. More...
 
class  RangeError
 Reports when the result of an operation cannot be represented by the destination type. More...
 
class  OverflowError
 Reports when the result of an arithmetic operation is too large for the destination type. More...
 
class  UnderflowError
 Reports when the result of an arithmetic operation is too small for the destination type. More...
 
class  NotFoundError
 Reports attempts to access elements using an invalid key. More...
 
class  IoError
 Reports errors in external input/output operations. More...
 
class  TypeError
 Reports errors from accepting an object of an unexpected or inappropriate type. More...
 

Typedefs

typedef std::vector< TracepointTraceback
 

Functions

std::ostreamoperator<< (std::ostream &stream, Exception const &e)
 Push the text representation of an exception onto a stream. More...
 
 PYBIND11_MODULE (exceptions, mod)
 

Typedef Documentation

◆ Traceback

Definition at line 95 of file Exception.h.

Function Documentation

◆ operator<<()

std::ostream & lsst::pex::exceptions::operator<< ( std::ostream stream,
Exception const &  e 
)

Push the text representation of an exception onto a stream.

Parameters
[in]streamReference to an output stream.
[in]eException to output.
Returns
Reference to the output stream after adding the text.

Definition at line 105 of file Exception.cc.

105 { return e.addToStream(stream); }

◆ PYBIND11_MODULE()

lsst::pex::exceptions::PYBIND11_MODULE ( exceptions  ,
mod   
)

Definition at line 90 of file exceptions.cc.

90  {
91  py::class_<Tracepoint> clsTracepoint(mod, "Tracepoint");
92 
93  clsTracepoint.def(py::init<char const *, int, char const *, std::string const &>())
94  .def_readwrite("_file", &Tracepoint::_file)
95  .def_readwrite("_line", &Tracepoint::_line)
96  .def_readwrite("_func", &Tracepoint::_func)
97  .def_readwrite("_message", &Tracepoint::_message);
98 
99  py::class_<Exception> clsException(mod, "Exception");
100 
101  clsException.def(py::init<std::string const &>())
102  .def("addMessage", &Exception::addMessage)
103  .def("getTraceback", &Exception::getTraceback)
104  .def("addToStream", &Exception::addToStream)
105  .def("what", &Exception::what)
106  .def("getType", &Exception::getType)
107  .def("clone", &Exception::clone)
108  .def("asString",
109  [](Exception &self) -> std::string {
110  std::ostringstream stream;
111  self.addToStream(stream);
112  return stream.str();
113  })
114  .def("__repr__", [](Exception &self) -> std::string {
116  s << "Exception('" << self.what() << "')";
117  return s.str();
118  });
119 
120  py::class_<LogicError, Exception> clsLogicError(mod, "LogicError");
121  clsLogicError.def(py::init<std::string const &>());
122 
123  py::class_<NotFoundError, Exception> clsNotFoundError(mod, "NotFoundError");
124  clsNotFoundError.def(py::init<std::string const &>());
125 
126  py::class_<RuntimeError, Exception> clsRuntimeError(mod, "RuntimeError");
127  clsRuntimeError.def(py::init<std::string const &>());
128 
129  py::class_<IoError, RuntimeError> clsIoError(mod, "IoError");
130  clsIoError.def(py::init<std::string const &>());
131 
132  py::class_<OverflowError, RuntimeError> clsOverflowError(mod, "OverflowError");
133  clsOverflowError.def(py::init<std::string const &>());
134 
135  py::class_<RangeError, RuntimeError> clsRangeError(mod, "RangeError");
136  clsRangeError.def(py::init<std::string const &>());
137 
138  py::class_<TypeError, LogicError> clsTypeError(mod, "TypeError");
139  clsTypeError.def(py::init<std::string const &>());
140 
141  py::class_<UnderflowError, RuntimeError> clsUnderflowError(mod, "UnderflowError");
142  clsUnderflowError.def(py::init<std::string const &>());
143 
144  py::class_<DomainError, LogicError> clsDomainError(mod, "DomainError");
145  clsDomainError.def(py::init<std::string const &>());
146 
147  py::class_<InvalidParameterError, LogicError> clsInvalidParameterError(mod, "InvalidParameterError");
148  clsInvalidParameterError.def(py::init<std::string const &>());
149 
150  py::class_<LengthError, LogicError> clsLengthError(mod, "LengthError");
151  clsLengthError.def(py::init<std::string const &>());
152 
153  py::class_<OutOfRangeError, LogicError> clsOutOfRangeError(mod, "OutOfRangeError");
154  clsOutOfRangeError.def(py::init<std::string const &>());
155 
156  py::register_exception_translator([](std::exception_ptr p) {
157  try {
158  if (p) std::rethrow_exception(p);
159  } catch (const Exception &e) {
160  py::object current_exception;
161  current_exception = py::cast(e.clone(), py::return_value_policy::take_ownership);
162  raiseLsstException(current_exception);
163  }
164  });
165 }
Provides consistent interface for LSST exceptions.
Definition: Exception.h:107
virtual Exception * clone(void) const
Return a copy of the exception as an Exception pointer.
Definition: Exception.cc:103
T current_exception(T... args)
T rethrow_exception(T... args)
T str(T... args)