previous | start | next

Exception Specifications

public class Coin
{
public void read(BufferedReader in) throws IOException
{
value = Double.parseDouble(in.readLine());
name =in.readLine();
}
...
}


previous | start | next