Changeset 1270
- Timestamp:
- 01/25/09 15:49:03 (18 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/util/Assert.java
r1171 r1270 143 143 * be used at catch blocks that should never be reached at all. 144 144 * It throws an AssertionFailedException with the given nested 145 * exception .145 * exception and message. 146 146 * 147 147 * @param message The message to be used in the exception. … … 152 152 throws AssertionFailedException 153 153 { 154 throw new AssertionFailedException(message, ex);154 throw new AssertionFailedException(message, ex); 155 155 } 156 156 }
