// ***********************************************************************
// 
//     AgileWebs
// 
// ***********************************************************************
namespace Core.Blueprint.Logging
{
    /// 
    /// Constants for the error codes.
    /// 
    public static class ErrorCodes
    {
        /// 
        /// The generic entities not found error code.
        /// 
        public const string EntitiesNotFound = "{0}EntitiesNotFound";
        /// 
        /// The entity already exsits error message.
        /// 
        public const string EntityAlreadyExists = "{0}EntityAlreadyExists";
        /// 
        /// The generic entity not found error code.
        /// 
        public const string EntityNotFound = "{0}EntityNotFound";
        /// 
        /// The generic not supported error code.
        /// 
        public const string EntityNotSupported = "{0}NotSupported";
        /// 
        /// The internal server error code.
        /// 
        public const string InternalServerError = "InternalServerError";
        /// 
        /// The invalid parameters in mapper error code.
        /// 
        public const string InvalidParametersMapper = "InvalidParametersMapper";
        /// 
        /// The page size invalid value error code.
        /// 
        public const string PageSizeInvalidValue = "PageSizeInvalidValue";
        /// 
        /// The page ot of range error code.
        /// 
        public const string PageOutOfRange = "PageOutOfRange";
        /// 
        /// The property does not match the regular expresion error code.
        /// 
        public const string PropertyDoesNotMatchRegex = "{0}PropertyDoesNotMatchRegex";
        /// 
        /// The property is required error code.
        /// 
        public const string PropertyIsRequired = "{0}PropertyIsRequired";
        /// 
        /// The property length invalid error code.
        /// 
        public const string PropertyLengthInvalid = "{0}PropertyLengthInvalid";
        /// 
        /// The property must be in range error code.
        /// 
        public const string PropertyMustBeInRange = "{0}PropertyMustBeInRange";
        /// 
        /// The route not found error code.
        /// 
        public const string RouteNotFound = "RouteNotFound";
    }
}