/*
 *  VisitorNotServer.java v0.10 20-DEC-1999
 *  Copyright (c) TKK/TLM/Calypso
 *  Author: Alexey Mednonogov
 */

package codec.visit;

import java.io.*;
import java.util.*;

/** Exception thrown by Visitor in case PDU is sent through registered PCO,
 *  but this PCO does not represent Server object as it should in the context
 *  of current invocation. */
final public class VisitorNotServer extends com.t3.ot.misc.OtException {

   	public VisitorNotServer() { super(); }
   	public VisitorNotServer(String message) { super(message); }
}
