package dslab.protocol.dmtp; import dslab.protocol.ProtocolException; /** * Thrown when trying to manipulate a message but begin() was not called before, so there is no message to manipulate. */ public class NoOpenMessageException extends ProtocolException { public NoOpenMessageException() { super("Begin message first"); } }