2011-03-16 13 views

Respuesta

13
public writeThisToFile(String line) throws FileNotFoundException, AppSpecificServiceException, SecurityException{ 
/* some thing */ 
} 

Véase también

4

Uso de la cláusula de throws:

public void myMethod() 
    throws Exception1, Exception2 
{ 
    ... 
} 
6
public void yourMethod() throws anException, anotherException { 
//stuff here 
} 
Cuestiones relacionadas