You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
336 B
PHTML
13 lines
336 B
PHTML
4 years ago
|
<?php
|
||
|
class Errors {
|
||
|
const E_SUCCESS = "E_SUCCESS";
|
||
|
const E_UNAUTHORIZED = "E_UNAUTHORIZED";
|
||
|
const E_UNKNOWN_METHOD = "E_UNKNOWN_METHOD";
|
||
|
const E_UNKNOWN_PLUGIN = "E_UNKNOWN_PLUGIN";
|
||
|
const E_SCHEMA_MISMATCH = "E_SCHEMA_MISMATCH";
|
||
|
|
||
|
static function to_json(string $code) {
|
||
|
return json_encode(["error" => ["code" => $code]]);
|
||
|
}
|
||
|
}
|