9 namespace Core.TypeCast
31 : this(cause, null, message ?? cause.GetDescription())
42 : this(cause, innerException, cause.GetDescription())
54 : base(message, innerException)
73 return this.Cause.GetType().Name +
" '" + this.Cause +
"': " + this.Cause.GetDescription();
79 public override string Message
95 return this.GetMessage() + Environment.NewLine + base.ToString();
The common Exceptioninterface.
ConverterException(ConverterCause cause, Exception innerException)
Initializes a new instance of the ConverterException class. Requires a ConverterCause and innerExcept...
The Exception-type which is raised exclusively by the Converter<TIn,TOut> Library ...
ConverterException(ConverterCause cause, Exception innerException, string message)
Initializes a new instance of the ConverterException class. Requires a ConverterCause an innerExcepti...
ConverterException(ConverterCause cause, string message=null)
Initializes a new instance of the ConverterException class. Requires a ConverterCause and optional us...
virtual string GetMessage()
Override this method for custom formatting of the unformatted exception Exception.Message
override string ToString()
A string representation of the current exception.
ConverterCause
Contains the reasons for a ConverterException to be raised.