1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package Torello.Java.Additional;

/**
 * If an attempt is made to execute a {@link Script} object without providing a 
 * {@link Sender} instance, then this exception throws.
 */
public class NoSenderException extends RuntimeException 
{
    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX>  */
    protected static final long serialVersionUID = 1;

    /** Constructs a {@code NoSenderException} with the default detail message. */
    public NoSenderException()
    { super("This Script Instance is being executed without any Sender havng been provided"); }
}