All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hxl.miniapi.core.exception.ClientException.kt Maven / Gradle / Ivy

There is a newer version: 1.3.3
Show newest version
package com.hxl.miniapi.core.exception

import com.hxl.miniapi.http.HttpStatus

object ClientException{
    fun create400(msg:String):HttpException{
        return HttpException(msg,HttpStatus.CLIENT_ERROR.code)
    }
    fun create404(msg:String):HttpException{
        return HttpException(msg,HttpStatus.NOT_FOUND.code)
    }
    fun create403(msg:String):HttpException{
        return HttpException(msg,HttpStatus.NOT_FOUND.code)
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy