コード例 #1
0
 public InvalidEmailOrPasswordException(RequestException exception)
 {
     Response = exception.Response;
     Content  = exception.Error.Message;
 }
コード例 #2
0
 public UnauthorizedException(RequestException exception)
 {
     Response = exception.Response;
     Content  = exception.Error.Message;
 }
コード例 #3
0
 public ForbiddenException(RequestException exception)
 {
     Response = exception.Response;
     Content  = exception.Error.Message;
 }
コード例 #4
0
 public ExistingUserException(RequestException exception)
 {
     Response = exception.Response;
     Content  = exception.Error.Message;
 }