You separate several thrown exceptions with a comma:
public static void main(String[] args) throws IOException, AWTException {
Alternatively, but usually not recommended, you can define a parent class for throws:
public static void main(String[] args) throws Exception {