ConfigureException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.cache; import org.jboss.util.NestedException; public class ConfigureException extends NestedException { public ConfigureException(String str) { super(str); } }
ConfigureException.java |