Hola amigos,
Estoy haciendo una clase en java pero en el catch quiero que se direccione a un jsp, pero no se como hacerlo, hasta ahorita solo me manda el mensaje y error, no quiero que mande error si no a un jsp
Espero que me puedan ayudar.
public class PrepContactoAction extends ActionSupport {
public String execute() throws Exception {
try
} catch (Exception e) {
logger.info("entro a catch");
String message = "COMUNICARSE CON EL ADMINISTRADOR";
throw new RuntimeException (message);
}
}
}