Changeset 1270

Show
Ignore:
Timestamp:
01/25/09 15:49:03 (18 months ago)
Author:
amandel
Message:

Javadoc fix

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/src/java/org/jcoderz/commons/util/Assert.java

    r1171 r1270  
    143143    * be used at catch blocks that should never be reached at all. 
    144144    * It throws an AssertionFailedException with the given nested 
    145     * exception. 
     145    * exception and message. 
    146146    * 
    147147    * @param message The message to be used in the exception. 
     
    152152       throws AssertionFailedException 
    153153   { 
    154      throw new AssertionFailedException(message, ex); 
     154       throw new AssertionFailedException(message, ex); 
    155155   } 
    156156}