Class IoCContainerDisposedException
Thrown when trying to obtain service on an already disposed container.
public class IoCContainerDisposedException : Exception
- Inheritance
-
objectExceptionIoCContainerDisposedException
- Extension Methods
Constructors
IoCContainerDisposedException()
Initializes a new instance of the IoCContainerDisposedException class with default values.
public IoCContainerDisposedException()
IoCContainerDisposedException(string)
Initializes a new instance of the IoCContainerDisposedException class with a specified error message.
public IoCContainerDisposedException(string message)
Parameters
message
stringThe message that describes the error.
IoCContainerDisposedException(string, Exception)
Initializes a new instance of the IoCContainerDisposedException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public IoCContainerDisposedException(string message, Exception inner)
Parameters
message
stringThe message that describes the error.
inner
ExceptionThe exception that is the cause of the current exception, or a null reference if no inner exception is specified.