Exception special case -- runtimeexception class

Source: Internet
Author: User
If this exception is thrown in the function content, the function does not need to be declared, the caller does not need to handle it, and the compilation is the same (of course, it can also be declared and processed ). You do not need to declare the function because the caller does not need to process it. When this exception occurs, you want the program to stop. Because the operation cannot be continued during running, you want to modify the code after stopping the program.

If a custom exception occurs, the operation cannot continue,
Let the custom exception inherit runtimeexception.

There are two types of exceptions:
1. Exceptions detected during compilation.
Function content throw, function throw, callers throw or capture.
2. Exceptions not detected during compilation (runtime exceptions. Runtimeexception and its subclass)
You can simply throw the function content.

Class fushuexception extends runtimeexception
{
Fushuexception (string MSG)
{
Super (MSG );
}

}
Class demo
{
Int Div (int A, Int, B)
If (B <0)
Throw new fushuexception ("the divisor is negative ");
}
Class exceptiondemo4
{
Public static void main (string [] ARGs)

{

Demo d = new demo ();
Int x = div (4,-1 );
System. Out. println ("x =" + x );
System. Out. println ("over ");

}
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.