answersLogoWhite

0


Best Answer

Throw is used to actually throw the exception, whereas throws is declarative for the method. They are not interchangeable.

public void myMethod(int param) throws MyException

{

if (param < 10)

{

throw new MyException("Too low!);

}

//Blah, Blah, Blah...

} The Throw clause can be used in any part of code where you feel a specific exception needs to be thrown to the calling method.

If a method is throwing an exception, it should either be surrounded by a try catch block to catch it or that method should have the throws clause in its signature. Without the throws clause in the signature the Java compiler does not know what to do with the exception. The throws clause tells the compiler that this particular exception would be handled by the calling method.

User Avatar

Wiki User

15y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

The keyword throw is used to throw user defined exceptions and it requires a single argument(a throwable class object)

ex: throw new XYZException("Test");

The keyword throws is used in method signatures to declare that, this method could possibly throw an exception.

ex: public void test() throws SQLException {

}

Throwable is an interface that the Exception class implements and an interface that all user defined class would implicitly implement to ensure that they have exception like behavior..

The throw keyword is used to explicitly throw an exception.

The throws keyword is used to declare what types of exceptions are thrown by a method.

The Throwable class is the superclass of all errors and exceptions in Java.

Example:

// This class is of type Throwable

class MyClass extends Throwable {

// The main method is declared to throw a MyClass Throwable object

public static void main(String[] args) throws MyClass {

// And let's throw a new instance of MyClass to see what happens.

throw new MyClass();

}

}

Of course, this code will be pretty useless:

Exception in thread "main" MyClass

at MyClass.main(MyClass.java:6)

Java Result: 1

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between throw and throws in Java?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the difference between throw and throws in net?

"throw" is the keyword to raise an exception. "throws" is a Java keyword that indicates a specific method can potentially raise a named exception. There is no analog in VB.Net or C#. Perhaps there is a "throws" keyword in J#?


Throws statement in java?

throw new Throwable(); or throw new Error("Danger will Robinson!"); or throw new NullPointerException(); etc.


What keyword are used in java for exception handling?

The important keywords used in Java with respect to Exception Handling are: a. Throw - The "throw" keyword is used to throw exceptions from inside a method b. Throws - The "throws" keyword is used to signify the fact that the code contents within the current method may be throwing an exception and the calling method must handle them appropriately


Can NullPointerException be used with ArithmaticException using throws keyword in java?

No. You cannot throw or catch Null pointer exceptions


What is difference between java 2 and java 5?

They are different versions. Java 5 is newer than Java 2. Think of it like the difference between the Playstation 1 and the Playstation 3.


Why should throw keyword is used in java?

Use it when you are implementing something that says it throws a certain exception when a certain condition is met.


Major difference between c and java?

Java is object oriented, C is not...


What is the difference between connectivity in java?

kamina


What is difference between connectivity in java?

kamina


What is the main difference between UNIX and JAVA?

Unix is an operating system, Java is a language.


When wil you need throws keyword in java?

The throws keyword will be used in method declaration to signify the fact that, some pieces of code inside the method may throw exceptions that are specified in the method signature.


Difference between recordset and resultset in java?

Rowset