Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The code works fine until I try to make the code into a constructable class. When I attempt to construct an object from it I get the error

"Default constructor cannot handle exception type IOException thrown by implicit super constructor. Must define an explicit constructor"

This is when having to throw exceptions to FileReader and BufferedReader.

Thanks

EDIT:

FileReader textFilethree = new FileReader (xFile);
BufferedReader bufferedTextthree = new BufferedReader (textFilethree) ;
String lineThree = bufferedTextthree.readLine();

The xFile is gotten from the construction. Note that within this construction exceptions are thrown.

share|improve this question

2 Answers

Default constructor implicitly invokes super constructor which is assumed to be throwing some exception which you need to handle in sub class's constructor . for detailed answer post the code

class Base{

  public Base() throw SomeException{
    //some code
  }

}

class Child extends Base{
  public Child(){
   //here it implicitly invokes `Base()`, So handle it here
  }
}
share|improve this answer
Well here is relevant code. edit:whoops – Ian Jul 21 '11 at 7:38
Added code to the post – Ian Jul 21 '11 at 7:42
1  
you need to add relevant construtor's – Jigar Joshi Jul 21 '11 at 7:45
It just has the parameter for FileReader as a parameter of the constructor with exceptions thrown. – Ian Jul 21 '11 at 7:59
1  
so you need to catch or throw it in sub class's constructor – Jigar Joshi Jul 21 '11 at 8:02
show 5 more comments

Base class super.constructor is implicitly invoked by the extending class constructor:

class Base
{
  public Base () throws Exception
  {
    throw <>;
  }
}

class Derived extends Base
{
  public Derived ()
  {
  }
}

Now, one need to handle the exception inside Derived() or make the constructor as,

public Derived() throws Exception
{
}

Whatever method you new up the object of Derived, either you enclose it in try-catch or make that method throwing Exception as above. [Note: this is pseudo code]

share|improve this answer
I'm thinking of erring on forgetting about the ide error, I ran it and it was fine. Will I run into problems later if I do this? – Ian Jul 21 '11 at 7:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.