mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-29 10:12:41 +01:00
21 lines
414 B
PHP
21 lines
414 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorMetaMTAReceivedMailProcessingException
|
||
|
extends Exception {
|
||
|
|
||
|
private $statusCode;
|
||
|
|
||
|
public function getStatusCode() {
|
||
|
return $this->statusCode;
|
||
|
}
|
||
|
|
||
|
public function __construct($status_code /* ... */) {
|
||
|
$args = func_get_args();
|
||
|
$this->statusCode = $args[0];
|
||
|
|
||
|
$args = array_slice($args, 1);
|
||
|
call_user_func_array(array('parent', '__construct'), $args);
|
||
|
}
|
||
|
|
||
|
}
|