KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > CORBA > DynAnyPackage > InvalidSeq


1 /*
2  * @(#)InvalidSeq.java 1.13 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
8
9 package org.omg.CORBA.DynAnyPackage;
10
11 /**
12  * The InvalidSeq exception is thrown by all operations on dynamic
13  * anys that take a sequence (Java array) as an argument, when that
14  * sequence is invalid.
15  */

16 public final class InvalidSeq
17     extends org.omg.CORBA.UserException JavaDoc {
18
19     /**
20      * Constructs an <code>InvalidSeq</code> object.
21      */

22     public InvalidSeq() {
23     super();
24     }
25
26     /**
27      * Constructs an <code>InvalidSeq</code> object.
28      * @param reason a <code>String</code> giving more information
29      * regarding the exception.
30      */

31     public InvalidSeq(String JavaDoc reason) {
32     super(reason);
33     }
34 }
35
Popular Tags