You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
292 B
15 lines
292 B
1 year ago
|
<?php
|
||
|
|
||
|
class Twocheckout_Error extends Exception
|
||
|
{
|
||
|
public function __construct($message, $code = 0)
|
||
|
{
|
||
|
parent::__construct($message, $code);
|
||
|
}
|
||
|
|
||
|
public function __toString()
|
||
|
{
|
||
|
return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
|
||
|
}
|
||
|
}
|