1 19 20 package org.efs.openreports; 21 22 public class ORException extends Exception  23 { 24 protected Exception exception; 25 26 public ORException(String message) 27 { 28 super(message); 29 } 30 31 public ORException(Exception exception) 32 { 33 super(exception.getMessage()); 34 this.exception = exception; 35 } 36 37 public Exception getException() 38 { 39 return exception; 40 } 41 } | Popular Tags |