Raise your own exception : Raise « PL SQL « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » PL SQL » Raise 
Raise your own exception
   
SQL>
SQL>
SQL> set echo off
SQL> set verify off
SQL> set define '&'
SQL>
SQL> prompt 'degrees F?:'
'degrees F?:'
SQL> accept temp default '100'

SQL> declare
  2    porridge_too_hot  exception;
  3    porridge_too_cold exception;
  4  begin
  5    case
  6      when '&temp' < 90.00 then raise porridge_too_cold;
  7      when '&temp' > 140.00 then raise porridge_too_hot;
  8      else null;
  9    end case;
 10
 11    dbms_output.put_line('just right');
 12
 13  exception
 14    when VALUE_ERROR then
 15      dbms_output.put_line('Please enter a numeric temperature (like 100)');
 16
 17    when porridge_too_hot then
 18      dbms_output.put_line('way too hot...');
 19
 20    when porridge_too_cold then
 21      dbms_output.put_line('way too cold...');
 22  end;
 23  /
just right

PL/SQL procedure successfully completed.

SQL>

   
    
  
Related examples in the same category
1. Raising an exception
2. Raising NO_DATA_FOUND Exception
3. RAISE_APPLICATION_ERROR
4. Raise different exception depends on value input
5. Raise exceptions for wrong parameters
6. Print out an error message
7. Raises and manages a standard anonymous block PL/SQL program error.
8. This procedure demonstrates the use of RAISE_APPLICATION_ERROR.
9. Setting the message dynamically
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.