You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
867 B
54 lines
867 B
/*
|
|
* Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* Thrown when a particular method cannot be found.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.0
|
|
*/
|
|
public
|
|
class NoSuchMethodException extends ReflectiveOperationException {
|
|
private static final long serialVersionUID = 5034388446362600923L;
|
|
|
|
/**
|
|
* Constructs a <code>NoSuchMethodException</code> without a detail message.
|
|
*/
|
|
public NoSuchMethodException() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs a <code>NoSuchMethodException</code> with a detail message.
|
|
*
|
|
* @param s the detail message.
|
|
*/
|
|
public NoSuchMethodException(String s) {
|
|
super(s);
|
|
}
|
|
}
|