forked from kzap/Eden-PHP-System
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArgument.php
More file actions
28 lines (25 loc) · 787 Bytes
/
Argument.php
File metadata and controls
28 lines (25 loc) · 787 Bytes
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
<?php //-->
/*
* This file is part of the System package of the Eden PHP Library.
* (c) 2013-2014 Openovate Labs
*
* Copyright and license information can be found at LICENSE
* distributed with this package.
*/
namespace Eden\System;
use Eden\Core\Argument as CoreArgument;
/**
* The base class for any class handling exceptions. Exceptions
* allow an application to custom handle errors that would
* normally let the system handle. This exception allows you to
* specify error levels and error types. Also using this exception
* outputs a trace (can be turned off) that shows where the problem
* started to where the program stopped.
*
* @vendor Eden
* @package System
* @author Christian Blanquera cblanquera@openovate.com
*/
class Argument extends CoreArgument
{
}