001package Torello.Java.Additional;
002
003/**
004 * If an attempt is made to execute a {@link Script} object without providing a 
005 * {@link Sender} instance, then this exception throws.
006 */
007public class NoSenderException extends RuntimeException 
008{
009    /** <EMBED CLASS='external-html' DATA-FILE-ID=SVUIDEX>  */
010    protected static final long serialVersionUID = 1;
011
012    /** Constructs a {@code NoSenderException} with the default detail message. */
013    public NoSenderException()
014    { super("This Script Instance is being executed without any Sender havng been provided"); }
015}