ee331ef3625280f2ec7823cbb558d82bb9dd35e2
[org.ibex.mail.git] / src / org / ibex / mail / target / Later.java
1 // Copyright 2000-2005 the Contributors, as shown in the revision logs.
2 // Licensed under the Apache Public Source License 2.0 ("the License").
3 // You may not use this file except in compliance with the License.
4
5 package org.ibex.mail.target;
6 import java.io.*;
7 import org.ibex.js.*;
8 import org.ibex.util.*;
9 import org.ibex.mail.*;
10 import org.ibex.mail.target.*;
11
12 public class Later extends JS.Obj implements Target {
13     public static final Later instance = new Later();
14     public static class LaterException extends RuntimeException { }
15     public void accept(Message m) throws IOException, MailException {
16         Log.warn(this, "delaying message " + m.summary());
17         throw new LaterException();
18     }
19 }