Bearsampp 2025.8.29
Loading...
Searching...
No Matches
Win32ServiceException Class Reference
Inheritance diagram for Win32ServiceException:

Public Member Functions

 __construct ($message="", $code=0, \Throwable $previous=null)

Detailed Description

Class Win32ServiceException

This class represents exceptions thrown by Win32 service operations. It extends the base Exception class to provide specific error handling for Win32 service functions.

Definition at line 17 of file class.win32serviceexception.php.

Constructor & Destructor Documentation

◆ __construct()

__construct ( $message = "",
$code = 0,
\Throwable $previous = null )

Constructor for the Win32ServiceException class.

Parameters
string$messageThe exception message.
int$codeThe exception code.
\Throwable | null$previousThe previous throwable used for exception chaining.

Definition at line 26 of file class.win32serviceexception.php.

27 {
28 parent::__construct($message, $code, $previous);
29 }

The documentation for this class was generated from the following file: