文档解释
ORA-06510: PL/SQL: unhandled user-defined exception
Cause: A user-defined exception was raised by PL/SQL code, but not handled.
Action: Fix the problem causing the exception or write an exception handler for this condition. Or you may need to contact your application administrator or DBA.
ORA-06510: PL/SQL: unhandled user-defined exception是Oracle的一个数据库错误,当客户端程序尝试处理未检索的用户定义异常时出现此错误。
官方解释
常见案例
正常处理方式:
1、确保程序正确地抛出和捕获自定义异常;
2、定义自定义异常,然后准备捕获它们;
3、避免使用例外,可能会引起不必要的错误;
4、已经捕获和处理异常,但遗漏了某些界限情况;
5、执行失败时,检查程序中的语法错误。