corda/classpath/java/lang/NoSuchFieldError.java

22 lines
553 B
Java
Raw Normal View History

/* Copyright (c) 2008, Avian Contributors
Permission to use, copy, modify, and/or distribute this software
for any purpose with or without fee is hereby granted, provided
that the above copyright notice and this permission notice appear
in all copies.
There is NO WARRANTY for this software. See license.txt for
details. */
2007-09-26 17:27:09 +00:00
package java.lang;
public class NoSuchFieldError extends IncompatibleClassChangeError {
public NoSuchFieldError(String message) {
super(message);
}
public NoSuchFieldError() {
super();
}
}