myMethodName( /* ... */) throws Exception_1, Exception_2 { }
public static int parsePositiveInt(String s) throws NumberFormatException { int i = parseInt(s); if (i < 0) throw new NumberFormatException(); }