Entering content frameBackground documentation Perl: Exception Classes Locate the document in its SAP Library structure

An exception is a string beginning with either CommunicationError or RepManServError .

Example

RepManServError: 25011 SQL error -3005 = Invalid SQL Statement

Example of use in a script:

eval {$session->cmd ('complete nonsense;') };
if ($@) { print " command failed: $@\n"; }

Print output:

command failed: RepManServError: 25011 SQL error -3005 = Invalid SQL Statement

Leaving content frame