Quiero hacer algo muy sencillo, pero me da un error de compilación y no sé por qué.
Tengo un servlet que recupera un parametro de un objeto . Vamos al código directamente:
Código:
ypublic void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String action = request.getParameter("action"); CargarDatos(action);
Código:
Y el error es este:public void CargarDatos(String Action) throws Exception
...\GestiónFicheros.java:396: unreported exception java.lang.Exception; must be caught or declared to be thrown
¿Qué ocurre?
Un saludo y gracias de antemano.