Experience exceptions : Exceptions « Language Basics « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Collections Data Structure
8. Database SQL JDBC
9. Design Pattern
10. Development Class
11. Email
12. Event
13. File Input Output
14. Game
15. Hibernate
16. J2EE
17. J2ME
18. JDK 6
19. JSP
20. JSTL
21. Language Basics
22. Network Protocol
23. PDF RTF
24. Regular Expressions
25. Security
26. Servlets
27. Spring
28. Swing Components
29. Swing JFC
30. SWT JFace Eclipse
31. Threads
32. Tiny Application
33. Velocity
34. Web Services SOA
35. XML
Microsoft Office Word 2007 Tutorial
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Java » Language Basics » ExceptionsScreenshots 
Experience exceptions
Experience exceptions

import java.awt.Frame;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.FileInputStream;

import javax.swing.ButtonGroup;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JRadioButton;

public class ExceptTest extends JFrame implements ActionListener {
    private double[] a;
  private JRadioButton divideByZeroButton;

  private JRadioButton badCastButton;

  private JRadioButton arrayBoundsButton;

  private JRadioButton nullPointerButton;

  private JRadioButton negSqrtButton;

  private JRadioButton overflowButton;

  private JRadioButton noSuchFileButton;

  private JRadioButton throwUnknownButton;

  public ExceptTest() {
    JPanel p = new JPanel();
    ButtonGroup g = new ButtonGroup();
    p.setLayout(new GridLayout(81));
    divideByZeroButton = addRadioButton("Divide by zero", g, p);
    badCastButton = addRadioButton("Bad cast", g, p);
    arrayBoundsButton = addRadioButton("Array bounds", g, p);
    nullPointerButton = addRadioButton("Null pointer", g, p);
    negSqrtButton = addRadioButton("sqrt(-1)", g, p);
    overflowButton = addRadioButton("Overflow", g, p);
    noSuchFileButton = addRadioButton("No such file", g, p);
    throwUnknownButton = addRadioButton("Throw unknown", g, p);
    getContentPane().add(p);
  }

  private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
    JRadioButton button = new JRadioButton(s, false);
    button.addActionListener(this);
    g.add(button);
    p.add(button);
    return button;
  }

  public void actionPerformed(ActionEvent evt) {
    try {
      Object source = evt.getSource();
      if (source == divideByZeroButton) {
        a[1= a[1/ a[1- a[1];
      else if (source == badCastButton) {
        Frame f = (Frameevt.getSource();
      else if (source == arrayBoundsButton) {
        a[1= a[10];
      else if (source == nullPointerButton) {
        Frame f = null;
        f.setSize(200200);
      else if (source == negSqrtButton) {
        a[1= Math.sqrt(-1);
      else if (source == overflowButton) {
        a[11000 1000 1000 1000;
        int n = (inta[1];
      else if (source == noSuchFileButton) {
        FileInputStream is = new FileInputStream("Java Source and Support");
      else if (source == throwUnknownButton) {
        throw new UnknownError();
      }
    catch (RuntimeException e) {
      System.out.println("Caught RuntimeException: " + e);
    catch (Exception e) {
      System.out.println("Caught Exception: " + e);
    }
  }

  public static void main(String[] args) {
    JFrame frame = new ExceptTest();
    frame.setSize(150200);
    frame.addWindowListener(new WindowAdapter() {
      public void windowClosing(WindowEvent e) {
        System.exit(0);
      }
    });
    frame.show();
  }
}
           
       
Related examples in the same category
1. Illustrate various Exceptions Illustrate various Exceptions
2. StackTrace
3. What happens if a method declares an unchecked exception?
4. Simple demo of exceptionsSimple demo of exceptions
5. Simple demo of exceptions, with finally clauseSimple demo of exceptions, with finally clause
6. ThreadBasedCatcher - Demonstrate catching uncaught exceptions
7. Exception CatcherException Catcher
8. Turning off Checked exceptions
9. Demonstrates exception chainingDemonstrates exception chaining
10. Finally is always executedFinally is always executed
11. Demonstrating the Exception MethodsDemonstrating the Exception Methods
12. Further embellishment of exception classesFurther embellishment of exception classes
13. The finally clause is always executedThe finally clause is always executed
14. Your own Exception classYour own Exception class
15. Catching exception hierarchiesCatching exception hierarchies
16. How an exception can be lost
17. Exception in main method
18. Ignoring RuntimeExceptionsIgnoring RuntimeExceptions
19. Demonstrating fillInStackTrace()Demonstrating fillInStackTrace()
20. Rethrow a different object from the one that was caughtRethrow a different object from the one that was caught
21. Inheriting your own exceptionsInheriting your own exceptions
22. Overridden methods may throw only the exceptions
23. Throw Exception OutThrow Exception Out
w__w__w_.j_a__v___a__2s___.___c__o__m___ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.