Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

exceptions in maps

Status
Not open for further replies.

mala1

Programmer
Dec 7, 2007
7
0
0
US
what are exceptions in maps.How do you handle them
 
Mala1,
I am assuming you mean exceptions as in errors? Every error has different resolution, based on the return code. What exactly is the message that you are seeing?

If you are talking about exceptions as in the JAVA API adapter, then someone else would need to answer your query.

-Mike
 
Well, you can throw your own errors with FAIL("my error") and you can handle errors of your exit calls (e.g. RUN()) by putting VALID() around it like this:

VALID(
RUN("anothermap.sun", "-OE1"),
"anothermap.sun did not run successfully"
)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top