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

com.silentgo.core.exception.AppException Maven / Gradle / Ivy

There is a newer version: 0.0.49
Show newest version
package com.silentgo.core.exception;


import com.silentgo.servlet.http.HttpStatus;

/**
 * Project : silentgo
 * com.silentgo.core.exception
 *
 * @author teddyzhu
 *         

* Created by teddyzhu on 16/8/22. */ public class AppException extends Exception { public int code = 500; public AppException(String message, int code) { super(message); } public AppException(int code) { super(HttpStatus.getMessage(code)); } public AppException(String message) { super(message); } public int getCode() { return code; } public void setCode(int code) { this.code = code; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy