/*
 *  VisitorOperationUndef.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 name refers to operation
 *  not found in Interface Repository. */
final public class VisitorOperationUndef extends com.t3.ot.misc.OtException {

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