SystemException.java
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:1k
源码类别:

OA系统

开发平台:

Java

  1. package com.bjsxt.oa.managers;
  2. public class SystemException extends RuntimeException {
  3. //异常代码
  4. private String key;
  5. private Object[] values;
  6. public SystemException() {
  7. super();
  8. }
  9. public SystemException(String message, Throwable throwable) {
  10. super(message, throwable);
  11. }
  12. public SystemException(String message) {
  13. super(message);
  14. }
  15. public SystemException(Throwable throwable) {
  16. super(throwable);
  17. }
  18. public SystemException(String message,String key){
  19. super(message);
  20. this.key = key;
  21. }
  22. public SystemException(String message,String key,Object value){
  23. super(message);
  24. this.key = key;
  25. this.values = new Object[]{value};
  26. }
  27. public SystemException(String message,String key,Object[] values){
  28. super(message);
  29. this.key = key;
  30. this.values = values;
  31. }
  32. public String getKey() {
  33. return key;
  34. }
  35. public Object[] getValues() {
  36. return values;
  37. }
  38. }