InvalidParentException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.management.j2ee; /** * Exception thrown when an invalid parent is specified for a * managed object. * * @author <a href="mailto:andreas@jboss.org">Andreas Schaefer</a>. * @version $Revision: 1.5 $ * <p/> * <p><b>Revisions:</b> * <p/> * <p><b>20011126 Andreas Schaefer:</b> * <ul> * <li> Adjustments to the JBoss Guidelines * </ul> */ public class InvalidParentException extends WrapperException { public InvalidParentException(String pMessage, Throwable pThrowable) { super(pMessage, pThrowable); } }
InvalidParentException.java |