appexception.java

来自「WAP PUSH后台源码,WAP PUSH后台源码」· Java 代码 · 共 40 行

JAVA
40
字号
package com.sxit.wap.exception;public class AppException extends Exception {  String error = "";  String forward = "";  Exception exception;  public AppException(String error, String forward, Exception exception){    super(error);    this.error = error;    this.forward = forward;    this.exception = exception;  }  public AppException(String error, Exception exception){    super(error);    this.error = error;    this.exception = exception;  }  public AppException(String error, String forward){    super(error);    this.error = error;    this.forward = forward;  }  public AppException(String error){    super(error);    this.error = error;  }  public AppException(Exception exception){    this.exception = exception;  }  public String getError() {    return error;  }  public Exception getException() {    return exception;  }  public String getForward() {    return forward;  }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?