Bearsampp 2025.8.29
Loading...
Searching...
No Matches
class.win32serviceexception.php
Go to the documentation of this file.
1<?php
2/*
3 *
4 * * Copyright (c) 2022-2025 Bearsampp
5 * * License: GNU General Public License version 3 or later; see LICENSE.txt
6 * * Website: https://bearsampp.com
7 * * Github: https://github.com/Bearsampp
8 *
9 */
10
17class Win32ServiceException extends \Exception
18{
26 public function __construct($message = "", $code = 0, \Throwable $previous = null)
27 {
28 parent::__construct($message, $code, $previous);
29 }
30}
__construct($message="", $code=0, \Throwable $previous=null)