Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

Java The Throw/Throws Keyword

//f a method does not handle a checked exception, the method must declare it using the throws keyword. The throws keyword appears at the end of a method's signature. 
One can throw an exception, either a newly instantiated one or an exception that you just caught, by using the throw keyword. 
Understand the difference between throws and throw keywords, throws is used to postpone the handling of a checked exception and throw is used to invoke an exception explicitly. 
Example
import java.io.*;
public class className {

   public void deposit(double amount) throws RemoteException {
      // Method implementation
      throw new RemoteException();
   }
   // Remainder of class definition
}
Source by sites.google.com #
 
PREVIOUS NEXT
Tagged: #Java #The #Keyword
ADD COMMENT
Topic
Name
8+7 =