/*
 *  VisitorAttributeUndef.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 attribute
 *  not found in Interface Repository. */
final public class VisitorAttributeUndef extends com.t3.ot.misc.OtException {

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