1 64 65 package com.jcorporate.expresso.ext.report; 66 67 import com.jcorporate.expresso.kernel.exception.ChainedException; 68 69 75 public class ReportException extends ChainedException { 76 77 80 public ReportException() { 81 super(); 82 } 83 84 85 91 public ReportException(String message, Throwable newNested) { 92 super(message, newNested); 93 } 94 95 100 public ReportException(Throwable newNested) { 101 super(); 102 } 103 104 109 public ReportException(String s) { 110 super(s); 111 } 112 } | Popular Tags |