Catel.IoC.TypeNotRegisteredException.TypeNotRegisteredException C# (CSharp) Метод

TypeNotRegisteredException() публичный Метод

Initializes a new instance of the TypeNotRegisteredException class.
public TypeNotRegisteredException ( Type requestedType, string message ) : System
requestedType System.Type The requested type.
message string The message.
Результат System
        public TypeNotRegisteredException(Type requestedType, string message)
            : base(string.Format("The specified type '{0}' is not registered or could not be constructed. Please register type before using it. {1}", 
            requestedType.GetSafeFullName(true), message ?? string.Empty))
        {
            RequestedType = requestedType;
        }
        #endregion
TypeNotRegisteredException