1. /*
  2. * @(#)IDLTypeException.java 1.2 03/12/19
  3. *
  4. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package com.sun.corba.se.impl.presentation.rmi ;
  8. /**
  9. * Checked exception containing information about an
  10. * an IDL type validation.
  11. */
  12. public class IDLTypeException extends Exception {
  13. public IDLTypeException() {}
  14. public IDLTypeException(String message) {
  15. super(message);
  16. }
  17. }