-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAPIException.php
More file actions
34 lines (31 loc) · 1.18 KB
/
APIException.php
File metadata and controls
34 lines (31 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/*
* DeskPRO (r) has been developed by Deskpro Ltd. https://www.deskpro.com/
* a British company located in London, England.
*
* All source code and content Copyright (c) 2025, Deskpro Ltd.
*
* The license agreement under which this software is released
* can be found at https://www.deskpro.com/eula/
*
* By using this software, you acknowledge having read the license
* and agree to be bound thereby.
*
* Please note that DeskPRO is not free software. We release the full
* source code for our software because we trust our users to pay us for
* the huge investment in time and energy that has gone into both creating
* this software and supporting our customers. By providing the source code
* we preserve our customers' ability to modify, audit and learn from our
* work. We have been developing DeskPRO since 2001, please help us make it
* another decade.
*
* Like the work you see? Think you could make it better? We are always
* looking for great developers to join us: https://www.deskprocom/jobs/
*
* ~ Thanks, Everyone at Team Deskpro
*/
namespace Deskpro\API\Exception;
/**
* Base exception class for all request errors.
*/
class APIException extends \Exception {}