.NET Portable TypeCast  3.1.0.4
A, easy-to-use tested, generic, portable, runtime-extensible, arbitrary type converter library
Core.TypeCast.DependencyInjectionException Class Reference

The Exception-type which is raised exclusively by the DependencyInjection<TDependency> class More...

+ Collaboration diagram for Core.TypeCast.DependencyInjectionException:

Public Member Functions

 DependencyInjectionException (string message=null, Exception innerException=null)
 Initializes a new instance of the DependencyInjectionException class. Allows passing an optional user message and innerException . More...
 
string GetMessage ()
 Gets the exception message. More...
 

Detailed Description

The Exception-type which is raised exclusively by the DependencyInjection<TDependency> class

Definition at line 19 of file DependencyInjectionException.cs.

Constructor & Destructor Documentation

Core.TypeCast.DependencyInjectionException.DependencyInjectionException ( string  message = null,
Exception  innerException = null 
)

Initializes a new instance of the DependencyInjectionException class. Allows passing an optional user message and innerException .

Parameters
messageThe error message that explains the reason for the exception.
innerExceptionThe exception that is the cause of the current exception, or a null reference if no inner exception is specified.

Definition at line 29 of file DependencyInjectionException.cs.

30  : base(message: message, innerException: innerException)
31  {
32  }

Member Function Documentation

string Core.TypeCast.DependencyInjectionException.GetMessage ( )

Gets the exception message.

Definition at line 37 of file DependencyInjectionException.cs.

38  {
39  return Message;
40  }

The documentation for this class was generated from the following file: