1 23 24 package org.enhydra.xml.driver; 25 26 import org.enhydra.error.ChainedException; 27 28 32 public class DiffException extends TestException { 33 36 public DiffException(String msg) { 37 super(msg); 38 } 39 40 43 public DiffException(String msg, 44 Throwable cause) { 45 super(msg, cause); 46 } 47 48 51 public DiffException(Throwable cause) { 52 super(cause); 53 } 54 } 55 | Popular Tags |