1 25 26 package org.objectweb.easybeans.api; 27 28 32 public class EZBContainerException extends Exception { 33 34 37 private static final long serialVersionUID = 1573045547480423457L; 38 39 44 public EZBContainerException() { 45 super(); 46 } 47 48 55 public EZBContainerException(final String message) { 56 super(message); 57 } 58 59 73 public EZBContainerException(final String message, final Throwable cause) { 74 super(message, cause); 75 } 76 77 90 public EZBContainerException(final Throwable cause) { 91 super(cause); 92 } 93 } 94 | Popular Tags |