1 23 24 package com.sun.ejb.containers; 25 26 public class InternalEJBContainerException extends Exception { 27 28 private static final long serialVersionUID = 0x7890; 29 30 public InternalEJBContainerException() { 31 super(); 32 } 33 34 public InternalEJBContainerException(String msg) { 35 super(msg); 36 } 37 38 public InternalEJBContainerException(String msg, Throwable th) { 39 super(msg, th); 40 } 41 42 } 43 | Popular Tags |