Exception Class
[C++]
class Exception : public std::exception
{
Exception(wchar_t const* msg);
virtual ~Exception() {}
wchar_t const* What();
char const* what();
}
[C#]
public class Exception : System.Exception
{
public Exception(string msg);
}
Members and Parameters
- msg: Message that describes the current exception.
- [C++] What: Returns the exception description as a wchar_t pointer.
- [C++] what: Returns the exception description as a char pointer.
Remarks
Exception is the principal base class for other FlowSshCpp and FlowSshNet exceptions.