mail overhaul
[org.ibex.mail.git] / src / org / ibex / mail / Target.java
1 package org.ibex.mail;
2 import java.io.*;
3 import org.ibex.js.*;
4
5 /** base class for mail message "destinations" */
6 public class Target extends JS {
7     public static final Target root = Script.root();
8     public void accept(Message m) throws IOException, MailException {
9         throw new MailException("Target.accept() unimplemented");
10     }
11 }