Why does RAD7 give a compile error of
The constructor IOException(Exception) is undefined
on the following line
throw new IOException(ex);
The Javadoc for Java 1.6/6.0 states that IOException
has a IOException(Throwable)
constructor
When I look at the definition of IOException
I see only the following constructors
IOException()
IOException(String)
Notes:
- Rational Application Developer 7.0.0.8
- Project Compatability set to Java 6