KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > xpetstore > util > Debug


1 package xpetstore.util;
2
3
4 /**
5  * @author <a HREF="mailto:tchbansi@sourceforge.net">Herve Tchepannou</a>
6  */

7 public class Debug
8 {
9     //~ Methods ----------------------------------------------------------------
10

11     public static void print( String JavaDoc msg )
12     {
13         System.out.println( msg );
14     }
15
16     public static void print( String JavaDoc msg,
17                               Exception JavaDoc cause )
18     {
19         System.out.println( msg );
20         cause.printStackTrace( );
21     }
22 }
23
Popular Tags