Exception.h
IntroductionUse the links in the table of contents to the left to access the documentation. FunctionsExceptiontemplate <typename... Ts> Exception( Ts&&... args); DiscussionX Structs and UnionsExceptionImpltemplate <class ErrorInfoT> struct ExceptionImpl : Exception { ExceptionImpl( ErrorInfoT&& errorInfo); using Base = ExceptionImpl<ErrorInfoT>; const ErrorInfoT errorInfo; }; DiscussionXX |