1 17 18 package org.apache.geronimo.kernel.config; 19 20 25 public class NoSuchStoreException extends Exception { 26 public NoSuchStoreException() { 27 } 28 29 public NoSuchStoreException(Throwable cause) { 30 super(cause); 31 } 32 33 public NoSuchStoreException(String message) { 34 super(message); 35 } 36 37 public NoSuchStoreException(String message, Throwable cause) { 38 super(message, cause); 39 } 40 } 41 | Popular Tags |