1. /*
  2. * @(#)InvalidSeq.java 1.5 01/11/29
  3. *
  4. * Copyright 2002 Sun Microsystems, Inc. All rights reserved.
  5. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  6. */
  7. package org.omg.CORBA.DynAnyPackage;
  8. /**
  9. * The InvalidSeq exception is thrown by all operations on dynamic
  10. * anys that take a sequence (Java array) as an argument, when that
  11. * sequence is invalid.
  12. */
  13. public final class InvalidSeq
  14. extends org.omg.CORBA.UserException {
  15. public InvalidSeq() {
  16. super();
  17. }
  18. public InvalidSeq(String reason) {
  19. super(reason);
  20. }
  21. }