long-exception-list

java style for long throws exception list

What's the Java style for formatting a long throws list? Let's say I have this: public void some() throws IOException, ClassNotFoundException, NoSuchMethodException,InvocationTargetException, IllegalAccessException { } Should it be: public void some() throws IOException, ClassNotFoundException, ...