Sage.SageException.SageException C# (CSharp) Method

SageException() public method

Initializes a new instance of the SageException class, using the specified exception
public SageException ( Exception exception ) : System
exception System.Exception The actual exception that was thrown.
return System
        public SageException(Exception exception)
            : base(exception.Message, exception)
        {
            actual = exception;
        }

Same methods

SageException::SageException ( ) : System