1 /* $Id: CDLExceptCheck.java,v 1.1.1.1 2003/02/11 16:19:40 bures Exp $ */2 package SOFA.SOFAnode.Made.CDL;3 4 class CDLExceptCheck extends Exception {5 public CDLExceptCheck() { super(); }6 public CDLExceptCheck(String s) { super(s); }7 }8