DS-Lab / src / main / java / dslab / protocol / dmtp / NoOpenMessageException.java
NoOpenMessageException.java
Raw
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");
    }
}