BetterCms.Core.Exceptions.Mvc.ConfirmationRequestException.ConfirmationRequestException C# (CSharp) Метод

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

Initializes a new instance of the ConfirmationRequestException class.
public ConfirmationRequestException ( Func resource, string message ) : System
resource Func A function to retrieve a globalized resource associated with this exception.
message string The exception message.
Результат System
        public ConfirmationRequestException(Func<string> resource, string message)
            : base(message)
        {
            Resource = resource;
        }

Same methods

ConfirmationRequestException::ConfirmationRequestException ( ) : System
ConfirmationRequestException::ConfirmationRequestException ( Func resource, string message, Exception innerException ) : System
ConfirmationRequestException