1 23 package com.sun.enterprise.admin.util; 24 25 import com.sun.enterprise.admin.util.Debug; 26 import com.sun.enterprise.admin.util.ThrowableToString; 27 28 public class ExceptionUtil 29 { 30 36 static public void 37 ignoreException( Exception e ) 38 { 39 final String msg = "Ignoring exception (probably OK): " + 40 e.getClass().getName(); 41 42 Debug.println( msg ); 43 } 44 } 45 46 47 | Popular Tags |