コード例 #1
0
 public NotFoundException(GeneralErrorResponse response)
     : base(response.mesaj)
 {
     this.response = response;
 }
コード例 #2
0
 public UnauthorizedException(GeneralErrorResponse response)
     : base(response.mesaj)
 {
     this.response = response;
 }
コード例 #3
0
 public BadRequestException(GeneralErrorResponse response)
     : base(response.mesaj)
 {
     this.response = response;
 }