-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
CLASS cx_sy_arithmetic_overflow DEFINITION PUBLIC INHERITING FROM cx_sy_arithmetic_error. | ||
|
||
PUBLIC SECTION. | ||
METHODS if_message~get_text REDEFINITION. | ||
|
||
ENDCLASS. | ||
|
||
CLASS cx_sy_arithmetic_overflow IMPLEMENTATION. | ||
|
||
METHOD if_message~get_text. | ||
result = 'Arithmetic overflow'. | ||
ENDMETHOD. | ||
|
||
ENDCLASS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
CLASS cx_sy_conversion_no_number DEFINITION PUBLIC INHERITING FROM cx_sy_conversion_error. | ||
|
||
PUBLIC SECTION. | ||
METHODS if_message~get_text REDEFINITION. | ||
|
||
ENDCLASS. | ||
|
||
CLASS cx_sy_conversion_no_number IMPLEMENTATION. | ||
|
||
METHOD if_message~get_text. | ||
result = 'Conversion no number'. | ||
ENDMETHOD. | ||
|
||
ENDCLASS. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,14 @@ | ||
CLASS cx_sy_range_out_of_bounds DEFINITION PUBLIC INHERITING FROM cx_sy_data_access_error. | ||
|
||
PUBLIC SECTION. | ||
METHODS if_message~get_text REDEFINITION. | ||
|
||
ENDCLASS. | ||
|
||
CLASS cx_sy_range_out_of_bounds IMPLEMENTATION. | ||
|
||
METHOD if_message~get_text. | ||
result = 'Range out of bounds'. | ||
ENDMETHOD. | ||
|
||
ENDCLASS. |