Ejemplo n.º 1
0
 internal DreamFactoryException(ErrorDescriptor descriptor)
     : base(descriptor.message)
 {
     ServerError = descriptor;
 }
Ejemplo n.º 2
0
 public UserNotAuthorizedException(ErrorDescriptor descriptor)
     : base(descriptor, "The current user is not authorized to perform the selected action")
 {
 }
Ejemplo n.º 3
0
 internal DreamFactoryException(ErrorDescriptor descriptor, string message)
     : base(message)
 {
     ServerError = descriptor;
 }
Ejemplo n.º 4
0
 public InvalidCredentialsException(ErrorDescriptor descriptor)
     : base(descriptor, "Invalid username or password")
 {
 }