app / com.pzpg.ogr.api.request / RequestServerException
RequestServerException
open class RequestServerException :
Exception
Opens Exception class to throw this when something is wrong with requests to the server
Parameters
message
- a message to show, inherited from Exception standard class
Author Władysław Jakołcewicz
Constructors
Name | Summary |
---|---|
<init> | Opens Exception class to throw this when something is wrong with requests to the serverRequestServerException(message: String ?) |
Inheritors
Name | Summary |
---|---|
BadRequestException | BadRequestException class to throw this when request message is invalid for server Has thrown when code status of the request is 400class BadRequestException : RequestServerException |
NotAllowedMethodException | BadRequestException class to throw this when method of request is not allowed Has thrown when code status of the request is 405class NotAllowedMethodException : RequestServerException |
TimeOutException | Has thrown when code status of the request is -1class TimeOutException : RequestServerException |
UnauthorizedException | UnauthorizedException class to throw this when user has not authorized Has thrown when code status of the request is 401class UnauthorizedException : RequestServerException |