Friday, June 10, 2016

Lesson 1 Exception

by Raksmey  |  at  8:25:00 PM



The Java programming language use exceptions to handle error and other exceptional events.
This lesson describes when and how to use exceptions.

What is an Exception?

An exception is an event that occurs during the exception of program that disrupts the normal flow of instructions.

The Catch or Specify Requirement

This section covers how to catch and handle exceptions. The discussion includes the try, catch, and finally blocks, ad well as chained exceptions and logging.

How to Throw Exceptions 

This section covers the throw statement and the throwable class and its subclasses.

The try-with-resources Statement

This section describes the try-with-resources statement, which is a try statement that declares one or more resources. A resources is as an object that must be closed after the program is finished with it. The try-with-resource statement ensures that each resource is closed at the end of the statement.

Unchecked Exceptions The Controversy

This section explain the correct and incorrect use of the unchecked exception indicated by subclasses of RuntimeException.

Advantages of Exceptions

The use of exceptions to manage error has some advantages over traditional error-management techniques, You'll learn more in this section.









0 comments:

Proudly Powered by Blogger.