s.java.util.NoSuchElementException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
package s.java.util;
import i.IInstrumentation;
import s.java.lang.RuntimeException;
import s.java.lang.String;
/**
* Our shadow implementation of java.util.NoSuchElementException.
*
* Implemented manually since it only provides a subset of the usual exception constructors.
*/
public class NoSuchElementException extends RuntimeException {
static {
// Shadow classes MUST be loaded during bootstrap phase.
IInstrumentation.attachedThreadInstrumentation.get().bootstrapOnly();
}
public NoSuchElementException() {
super();
}
public NoSuchElementException(String message) {
super(message);
}
// Deserializer support.
public NoSuchElementException(Void ignore, int readIndex) {
super(ignore, readIndex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy