home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / exceptions / DateTest.java next >
Text File  |  1996-09-28  |  185b  |  12 lines

  1. import java.util.Date;
  2.  
  3. public class DateTest {
  4.     public void main(String args[]) {
  5.         try {
  6.             Date d = new Date("Wed, 26 Jun 1996 23:50:03 -0400");
  7.         }
  8.         catch (Exception e) {
  9.         }
  10.     }
  11. }
  12.