This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Servlets and the fly likes Propogate CustomException from servlet Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Propogate CustomException from servlet" Watch "Propogate CustomException from servlet" New topic
Author

Propogate CustomException from servlet

Maneesh Godbole
Saloon Keeper

Joined: Jul 26, 2007
Posts: 8553

I have an application where the Swing UI client communicates to a servlet using serialized object IO.
My problem is I want to propagate custom exceptions to the UI. I have created a super class extending Throwable and all my custom exceptions subclass it.
Whenever I wanted to throw an exception, it tried wrapping it inside the ServletException/IOException.

On the client side I never get the ServletException but only the IOException.
From the IOException the call to getCause returns null.
Surprisingly I can see my custom exception on the server side stack trace.

What am I doing wrong?

PS. As a workaround I started writing my custom exception to the output stream and the code is working now. But I am sure this is not the correct solution.
[ July 15, 2008: Message edited by: Maneesh Godbole ]

[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Propogate CustomException from servlet
 
Similar Threads
servlet/jsp exception handling question
Througing HTTP 1.1 500 when my servlet was not syncronized
JavaBeat question. error-page
Can someone help me? I think my exceptions may be wrong but need opinion (B&S)
exception Tag in web.xml