1 19 package com.mysql.jdbc; 20 21 22 30 public class AssertionFailedException extends RuntimeException { 31 37 public AssertionFailedException(Exception ex) { 38 super("ASSERT FAILS: Exception " + ex.toString() 39 + " that should not be thrown, was thrown"); 40 } 41 42 48 public static void shouldNotHappen(Exception ex) 49 throws AssertionFailedException { 50 throw new AssertionFailedException(ex); 51 } 52 } 53 | Popular Tags |