ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Standard functions / Exception functions
  • Retrieving information about the exception
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Artificially triggers the security mechanism of WLanguage by throwing an exception. Then, this exception can be processed by an exception code written for this purpose. The exceptions are thrown in the WLanguage code only (and not in the framework).
Used in a web service, this function allows you to:
  • stop the current process,
  • return an error to the external application that uses the web service via the standard SOAP protocol.
    In the XML code returned by the web service, the error message is returned in the "faultstring" tag. The error number is not returned in a specific tag, it is contained in the text of the full error details found in the "detail" tag.
    Warning: When using this web service in a WINDEV, WEBDEV or WINDEV Mobile application, the error must be retrieved using the ErrorInfo function and not the ExceptionInfo function.
PHP Artificially triggers the PHP security mechanism by throwing an exception.
Example
WEBDEV - Server codeAjax
// -- Window global declarations
WHEN EXCEPTION
// According to the exception code
SWITCH ExceptionInfo(errCode)
// Process the exception 1
CASE 1: ...
// Process the exception 2
CASE 2: ...
END
END
WEBDEV - Server codeAjax
// -- Click of Button1
// Throw an exception 1
ExceptionThrow(1)
WEBDEV - Server codeAjax
// -- Click of Button2
// Throw an exception 2
ExceptionThrow(2)
WEBDEV - Server codePHPAjax
// -- Click of Button1
// Throw a warning exception
ExceptionThrow(exceptionWarning)
Syntax
ExceptionThrow(<Error number> [, <Message>])
<Error number>: Integer or constant
Number of the error to throw. This number (included between 1 and 1000) is defined by the developer.
PHP Level of the error to throw:
exceptionErrorError exception
exceptionInformationInformation exception
exceptionWarningWarning exception
<Message>: Optional character string
Message associated with the error.
Remarks

Retrieving information about the exception

The information about the exception is retrieved by ExceptionInfo:
  • ExceptionInfo(errCode) is used to retrieve the number of the exception.
  • ExceptionInfo(errMessage) is used to retrieve the message.
PHP Not available in PHP.
Component: wd300vm.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help