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