1 17 package org.apache.geronimo.kernel; 18 19 22 public class GBeanAlreadyExistsException extends KernelException { 23 public GBeanAlreadyExistsException() { 24 } 25 26 public GBeanAlreadyExistsException(String message) { 27 super(message); 28 } 29 30 public GBeanAlreadyExistsException(String message, Throwable cause) { 31 super(message, cause); 32 } 33 34 public GBeanAlreadyExistsException(Throwable cause) { 35 super(cause); 36 } 37 } 38 | Popular Tags |