IRConstructionException.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.iiop.rmi.ir; /** * Interface Repository construction failure exception. * * @author <a href="mailto:osh@sparre.dk">Ole Husgaard</a> * @version $Revision: 1.2 $ */ class IRConstructionException extends Exception { // Constants ----------------------------------------------------- // Attributes ---------------------------------------------------- // Static -------------------------------------------------------- // Constructors -------------------------------------------------- public IRConstructionException(String msg) { super(msg); } // Public -------------------------------------------------------- // Z implementation ---------------------------------------------- // Y overrides --------------------------------------------------- // Package protected --------------------------------------------- // Protected ----------------------------------------------------- // Private ------------------------------------------------------- // Inner classes ------------------------------------------------- }
IRConstructionException.java |