package com.wiley.compbooks.brose.chapter9.dii;

import org.omg.CORBA.*;

public class NotYetImplemented 
    extends java.lang.Exception 
{
    public TypeCode tc;

    NotYetImplemented( TypeCode tc ) 
    {
        this.tc = tc;
    }
}
