1 17 package org.apache.geronimo.common; 18 19 22 public class AmbiguousEJBRefException extends DeploymentException { 23 private final String ejbLink; 24 25 public AmbiguousEJBRefException(String ejbLink) { 26 super("Two or more ejbs match ejb-link use an absolute ejb-link: " + ejbLink); 27 this.ejbLink = ejbLink; 28 } 29 30 public AmbiguousEJBRefException(String ejbLink, Throwable cause) { 31 super(cause); 32 this.ejbLink = ejbLink; 33 } 34 35 public AmbiguousEJBRefException(String ejbLink, String message) { 36 super(message); 37 this.ejbLink = ejbLink; 38 } 39 40 public AmbiguousEJBRefException(String ejbLink, String message, Throwable cause) { 41 super(message, cause); 42 this.ejbLink = ejbLink; 43 } 44 45 public String getEjbLink() { 46 return ejbLink; 47 } 48 } 49 | Popular Tags |