Searched refs:IndexOutOfBoundsException (Results 1 - 25 of 252) sorted by relevance

1234567891011

/openjdk7/jdk/src/share/classes/java/lang/
H A DIndexOutOfBoundsException.java38 class IndexOutOfBoundsException extends RuntimeException { class in inherits:RuntimeException
42 * Constructs an <code>IndexOutOfBoundsException</code> with no
45 public IndexOutOfBoundsException() { method in class:IndexOutOfBoundsException
50 * Constructs an <code>IndexOutOfBoundsException</code> with the
55 public IndexOutOfBoundsException(String s) { method in class:IndexOutOfBoundsException
H A DArrayIndexOutOfBoundsException.java37 class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
H A DStringIndexOutOfBoundsException.java39 class StringIndexOutOfBoundsException extends IndexOutOfBoundsException {
/openjdk7/jdk/src/share/classes/java/awt/print/
H A DPageable.java64 * @throws IndexOutOfBoundsException if
69 throws IndexOutOfBoundsException;
77 * @throws IndexOutOfBoundsException if
82 throws IndexOutOfBoundsException;
H A DBook.java76 * @throws IndexOutOfBoundsException if the <code>Pageable</code>
80 throws IndexOutOfBoundsException
91 * @throws IndexOutOfBoundsException if the <code>Pageable</code>
95 throws IndexOutOfBoundsException
108 * @throws IndexOutOfBoundsException if the specified
114 throws IndexOutOfBoundsException
/openjdk7/jdk/test/java/io/OutputStreamWriter/
H A DBoundsCheck.java29 * IndexOutOfBoundsException.
45 } catch (IndexOutOfBoundsException e){ }
50 } catch (IndexOutOfBoundsException e){ }
55 } catch (IndexOutOfBoundsException e){ }
60 } catch (IndexOutOfBoundsException e){ }
65 } catch (IndexOutOfBoundsException e){ }
70 } catch (IndexOutOfBoundsException e){ }
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DFrameIndexOutOfBoundsException.java37 public class FrameIndexOutOfBoundsException extends IndexOutOfBoundsException {
/openjdk7/jdk/test/com/sun/jdi/
H A DCatchAllTest.sh29 # @summary REGRESSION: jdb rejects the syntax catch java.lang.IndexOutOfBoundsException
57 cmd catch java.lang.IndexOutOfBoundsException
60 cmd ignore java.lang.IndexOutOfBoundsException
61 cmd catch all java.lang.IndexOutOfBoundsException
62 cmd ignore all java.lang.IndexOutOfBoundsException
63 cmd catch caught java.lang.IndexOutOfBoundsException
64 cmd ignore caught java.lang.IndexOutOfBoundsException
65 cmd catch uncaught java.lang.IndexOutOfBoundsException
66 cmd ignore uncaught java.lang.IndexOutOfBoundsException
H A DMethodCallsReflection.java79 throw new IndexOutOfBoundsException ("staticExceptionCallee");
84 throw new IndexOutOfBoundsException ("instanceExceptionCallee");
90 } catch (IndexOutOfBoundsException ex) {
91 System.out.println("Caught expected IndexOutOfBoundsException from instanceCaller1()");
96 } catch (IndexOutOfBoundsException ex) {
97 System.out.println("Caught expected IndexOutOfBoundsException from instanceCaller2()");
108 } catch (IndexOutOfBoundsException ex) {
109 System.out.println("Caught expected IndexOutOfBoundsException from staticCaller1()");
114 } catch (IndexOutOfBoundsException ex) {
115 System.out.println("Caught expected IndexOutOfBoundsException fro
[all...]
/openjdk7/jdk/test/java/util/Vector/
H A DLastIndexOf.java40 } catch (IndexOutOfBoundsException e) {
H A DSyncLastIndexOf.java55 } catch (IndexOutOfBoundsException e) {
/openjdk7/jdk/src/share/classes/java/util/
H A DAbstractSequentialList.java84 * @throws IndexOutOfBoundsException {@inheritDoc}
90 throw new IndexOutOfBoundsException("Index: "+index);
111 * @throws IndexOutOfBoundsException {@inheritDoc}
120 throw new IndexOutOfBoundsException("Index: "+index);
142 * @throws IndexOutOfBoundsException {@inheritDoc}
148 throw new IndexOutOfBoundsException("Index: "+index);
167 * @throws IndexOutOfBoundsException {@inheritDoc}
176 throw new IndexOutOfBoundsException("Index: "+index);
210 * @throws IndexOutOfBoundsException {@inheritDoc}
223 throw new IndexOutOfBoundsException("Inde
[all...]
/openjdk7/jdk/test/java/awt/print/PrinterJob/
H A DExceptionTest.java51 if (!(pe.getCause() instanceof IndexOutOfBoundsException)) {
68 if (pageIndex > MAXPAGE) throw new IndexOutOfBoundsException();
74 if (pageIndex == 1) throw new IndexOutOfBoundsException();
/openjdk7/jdk/test/java/io/FilterOutputStream/
H A DBoundsCheck.java53 } catch (IndexOutOfBoundsException ie) {
64 } catch (IndexOutOfBoundsException ie) {
75 } catch (IndexOutOfBoundsException ie) {
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DArrayQueue.java42 throw new IndexOutOfBoundsException("Resizing would lose data");
64 throw new IndexOutOfBoundsException("Queue full");
73 throw new IndexOutOfBoundsException("Queue empty");
84 throw new IndexOutOfBoundsException(msg);
/openjdk7/hotspot/test/compiler/6895383/
H A DTest.java50 c.addAll(-1, new LinkedList()); // should throw IndexOutOfBoundsException
51 } catch (IndexOutOfBoundsException e) {
/openjdk7/jdk/test/java/io/DataInputStream/
H A DReadFully.java27 * IndexOutOfBoundsException.
43 } catch (IndexOutOfBoundsException ie) {
/openjdk7/jaxp/src/com/sun/org/apache/regexp/internal/
H A DCharacterArrayCharacterIterator.java49 throw new IndexOutOfBoundsException("endIndex=" + endIndex
53 throw new IndexOutOfBoundsException("beginIndex=" + beginIndex
/openjdk7/jdk/test/java/lang/StringBuilder/
H A DEnsureCapacity.java60 throw new RuntimeException("IndexOutOfBoundsException not thrown");
61 } catch (IndexOutOfBoundsException ex) {
77 throw new RuntimeException("IndexOutOfBoundsException not thrown");
78 } catch (IndexOutOfBoundsException ex) {
/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DXSettings.java123 throws IndexOutOfBoundsException
129 throw new IndexOutOfBoundsException("at " + idx
136 throws IndexOutOfBoundsException
148 throws IndexOutOfBoundsException
167 throws IndexOutOfBoundsException
190 throws IndexOutOfBoundsException
197 throws IndexOutOfBoundsException
242 * @exception IndexOutOfBoundsException if there isn't enough
246 throws IndexOutOfBoundsException,
/openjdk7/langtools/test/tools/javac/unit/util/list/
H A DAbstractList.java52 } catch(IndexOutOfBoundsException ex) {
60 } catch(IndexOutOfBoundsException ex) {
/openjdk7/jdk/test/java/lang/StringBuffer/
H A DGetCharsOverLength.java51 } catch (IndexOutOfBoundsException iobe) {
/openjdk7/jdk/src/share/classes/sun/print/
H A DOpenBook.java93 throws IndexOutOfBoundsException
/openjdk7/jdk/test/java/lang/String/
H A DExceptions.java112 tryCatch(" c, -1, 4", IndexOutOfBoundsException.class,
117 tryCatch(" c, 1, -1", IndexOutOfBoundsException.class,
122 tryCatch(" c, c.lengh + 1, 1", IndexOutOfBoundsException.class,
127 tryCatch(" c, 0, c.length + 1", IndexOutOfBoundsException.class,
151 tryCatch(" b, 0, -1, r", IndexOutOfBoundsException.class,
156 tryCatch(" b, 0, 4, -1", IndexOutOfBoundsException.class,
161 tryCatch(" b, 0, b.length + 1, 1", IndexOutOfBoundsException.class,
166 tryCatch(" b, 0, 0, b.length + 1", IndexOutOfBoundsException.class,
217 IndexOutOfBoundsException.class,
220 IndexOutOfBoundsException
[all...]
/openjdk7/jdk/src/share/classes/javax/management/
H A DAttributeList.java183 * java.lang.IndexOutOfBoundsException thrown.
193 catch (IndexOutOfBoundsException e) {
203 * should be raised, wrapping the java.lang.IndexOutOfBoundsException thrown.
212 catch (IndexOutOfBoundsException e) {
239 * java.lang.IndexOutOfBoundsException thrown.
252 } catch (IndexOutOfBoundsException e) {

Completed in 161 milliseconds

1234567891011