| Commit in servicemix/base/src/main/java/javax/jbi on MAIN | |||
| JBIException.java | -23 | 1.3 -> 1.4 | |
removed Sun Javadocs.
servicemix/base/src/main/java/javax/jbi
diff -u -r1.3 -r1.4 --- JBIException.java 2 Aug 2005 02:02:12 -0000 1.3 +++ JBIException.java 2 Aug 2005 22:42:16 -0000 1.4 @@ -1,40 +1,17 @@
package javax.jbi;
-/** - * JBIException is the top-level exception thrown by all JBI system - * components. - * - * @author JSR208 Expert Group - */ -
public class JBIException extends Exception
{
- /** - * Creates a new instance of JBIException with an exception message. - * @param aMessage String describing this exception. - */
public JBIException(String aMessage)
{
super(aMessage);
}
- /** - * Creates a new instance of JBIException with the specified message - * and cause. - * @param aMessage String describing this exception. - * @param aCause Throwable which represents an underlying problem - * (or null). - */
public JBIException(String aMessage, Throwable aCause)
{
super(aMessage, aCause);
}
- /** - * Creates a new instance of JBIException with the specified cause. - * @param aCause Throwable which represents an underlying problem - * (or null). - */
public JBIException(Throwable aCause)
{
super(aCause);
