1 16 17 package org.springframework.ejb.access; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 27 public class EjbAccessException extends NestedRuntimeException { 28 29 33 public EjbAccessException(String msg) { 34 super(msg); 35 } 36 37 42 public EjbAccessException(String msg, Throwable cause) { 43 super(msg, cause); 44 } 45 46 } 47 | Popular Tags |