BEGIN
-- your code goes here. If there isn't any, put NULL;
NULL;
EXCEPTION
WHEN NO_DATA_FOUND OR BLAHBLAH THEN
...
WHEN OTHERS THEN
END;
To get a list of the constants ("predefined exceptions") that you can catch, look here.
BEGIN
-- your code goes here. If there isn't any, put NULL;
NULL;
EXCEPTION
WHEN NO_DATA_FOUND OR BLAHBLAH THEN
...
WHEN OTHERS THEN
END;
No comments:
Post a Comment