LSSTApplications  20.0.0
LSSTDataManagementBasePackage
Public Member Functions | List of all members
lsst::base::LibraryException Class Reference

Unable to load library. More...

#include <library.h>

Inheritance diagram for lsst::base::LibraryException:
std::runtime_error

Public Member Functions

 LibraryException (std::string const &name)
 
 LibraryException (std::string const &lib, std::string const &func)
 
what (T... args)
 

Detailed Description

Unable to load library.

Definition at line 16 of file library.h.

Constructor & Destructor Documentation

◆ LibraryException() [1/2]

lsst::base::LibraryException::LibraryException ( std::string const &  name)
inline

Definition at line 18 of file library.h.

18  :
19  std::runtime_error("Unable to dynamically load library " + name) {};

◆ LibraryException() [2/2]

lsst::base::LibraryException::LibraryException ( std::string const &  lib,
std::string const &  func 
)
inline

Definition at line 20 of file library.h.

20  :
21  std::runtime_error("Unable to find function " + func + " from dynamically loaded library " + lib) {};

The documentation for this class was generated from the following file:
lsst::afw::geom.transform.transformContinued.name
string name
Definition: transformContinued.py:32
std::runtime_error
STL class.