previous |
start |
next
Exception Specifications
- BufferedReader.readLine may throw
IOException
- Tag calling method with throws IOException
public class Coin
{
public void read(BufferedReader in) throws IOException
{
value = Double.parseDouble(in.readLine());
name =in.readLine();
}
...
}
previous |
start |
next