Java Exception Problem (Please Help!)

Thread Solved

Join Date: Jan 2009
Posts: 2
Reputation: gokcer is an unknown quantity at this point 
Solved Threads: 0
gokcer gokcer is offline Offline
Newbie Poster

Java Exception Problem (Please Help!)

 
0
  #1
Jan 23rd, 2009
I am doing a Java project and in my gui I want to use Buttons. I want to put a class' internal parts code as a button action. Because the class Throws Exception when I copy the contents of the class under the button definition I encounter unreported exception error. Since I cannot edit the
  1. private void jButton1ActionPerformed(java.awt.event.ActionEvent evt)
part I cannot make the button throw an exception so my question is whether I can modify this button definition which is automatically generated by NetBeans to include this "throws exception" statement. Any help will be much appreciated as I have to get over this to go on. Thanks in advance.
Reply With Quote Quick reply to this message  
Join Date: Nov 2008
Posts: 332
Reputation: quuba is on a distinguished road 
Solved Threads: 53
quuba quuba is offline Offline
Posting Whiz

Re: Java Exception Problem (Please Help!)

 
0
  #2
Jan 23rd, 2009
Two ways: throw or catch.
Catch this Exception :
       private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
        try {
            myButton1ActionPerformed(evt);
        } catch (Exception ex) {
            //Logger.getLogger(NewJPanel.class.getName()).log(Level.SEVERE, null, ex);
            ex.printStackTrace();// or other message JOptionPane.showMessageDialog(...
        }       
    }
Attached Thumbnails
catch.gif  
Reply With Quote Quick reply to this message  
Join Date: Jan 2009
Posts: 2
Reputation: gokcer is an unknown quantity at this point 
Solved Threads: 0
gokcer gokcer is offline Offline
Newbie Poster

Re: Java Exception Problem (Please Help!)

 
0
  #3
Jan 24th, 2009
Tank you very much it worked!
Reply With Quote Quick reply to this message  
Reply

This thread has been marked solved.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC