System.Exception.Exception C# (CSharp) Method

Exception() public method

public Exception ( String message, Exception innerException ) : System
message String
innerException Exception
return System
        public Exception (String message, Exception innerException) {
            _message = message;
            _stackTrace = null;
            _dynamicMethods = null;
            _innerException = innerException;
            HResult = __HResults.COR_E_EXCEPTION;
            _xcode = _COMPlusExceptionCode;
            _xptrs = (IntPtr) 0;
        }

Same methods

Exception::Exception ( ) : System
Exception::Exception ( SerializationInfo info, StreamingContext context ) : System
Exception::Exception ( String message ) : System