M
muz dogru
I have made own Exception classes, which extend from Exception. When I
throw a new MyException("my error message"), then catch the error and
print the message, it's all fine within an application. But when I throw
a new MyException in a Web Service and catch it on the "other side", I
only get the message that an Exception was thrown, but not the exact
error message.
How do I have to handle own Exceptions? Is there a good tutorial? Thanks
a lot.
throw a new MyException("my error message"), then catch the error and
print the message, it's all fine within an application. But when I throw
a new MyException in a Web Service and catch it on the "other side", I
only get the message that an Exception was thrown, but not the exact
error message.
How do I have to handle own Exceptions? Is there a good tutorial? Thanks
a lot.