almost there
[org.ibex.mail.git] / src / org / ibex / mail / Target.java
index c30d573..f845f9f 100644 (file)
@@ -5,5 +5,7 @@ import org.ibex.js.*;
 /** base class for mail message "destinations" */
 public class Target {
     public static final Target root = Script.root();
-    public void accept(Message m) throws IOException, MailException { /* FIXME */ }
+    public void accept(Message m) throws IOException, MailException {
+        throw new MailException("Target.accept() unimplemented");
+    }
 }