CK.Core.CKException.CKException C# (CSharp) Method

CKException() public method

Initializes a new CKException with an ExceptionData. The message of this exception is the CKExceptionData.Message. Use the static CreateFrom to handle null data (a null CKException will be returned).
public CKException ( CKExceptionData data ) : System
data CKExceptionData The exception data. Must not be null.
return System
        public CKException( CKExceptionData data )
            : this( data.Message )
        {
            _exceptionData = data;
        }

Same methods

CKException::CKException ( Exception innerException, string messageFormat ) : System
CKException::CKException ( string message ) : System
CKException::CKException ( string message, Exception innerException ) : System