it compiles!
[org.ibex.mail.git] / src / org / ibex / mail / MailException.java
index b869042..6bb7ef9 100644 (file)
@@ -1,3 +1,6 @@
+package org.ibex.mail;
+import java.net.*;
+import java.io.*;
 
 public class MailException extends Exception {
 
@@ -5,7 +8,7 @@ public class MailException extends Exception {
     public static class RelayingDenied extends MailException { }
     public static class IOException extends MailException {
         // FIXME: fill in stack trace
-        final IOException ioe;
+        final java.io.IOException ioe;
         public IOException(java.io.IOException ioe) { this.ioe = ioe; }
     }