hedera-web/web/json-exception.php

21 lines
399 B
PHP

<?php
namespace Vn\Web;
/**
* Class used to store information about errors, warnings and info messages.
*
* @property string $exception The exception name
* @property string $message The message string
* @property string $code The code of message
*/
class JsonException {
var $exception = NULL;
var $message;
var $code = NULL;
var $file = NULL;
var $line = NULL;
var $trace = NULL;
}