repository.grepcode.com$java$root@jdk$openjdk@6-b14
repository.grepcode.com$java$root@jdk$openjdk@6-b14@java$lang$NoSuchMethodException.java
file
oh
o
[]
Is there any possibility of exceptions to occur other than RuntimeException in Java? Thanks.
Is it possible to rename the openconnection()?
Orginal:
URL url = new URL("http://google.co.in");
URLConnection connection = url.**openConnection**();
After:
URL url = new URL("http://google.co.in");
URLConnection connection = url.**connect**();
I'm just wondering if it is possible and how I would go about doing it. Is there an alternative? I was thinking of making a class in order to do...
Thrown when a particular method cannot be found.
- Author(s):
- unascribed
- Since:
- JDK1.0
Constructs a
NoSuchMethodException without a detail message.
Constructs a
NoSuchMethodException with a detail message.
- Parameters:
s the detail message.