0
1
Fork 0
hedera-web-mindshore/web/json-exception.php

21 lines
400 B
PHP
Raw Normal View History

<?php
2016-07-22 20:00:27 +00:00
namespace Vn\Web;
/**
* Class used to store information about errors, warnings and info messages.
*
2016-08-22 10:41:05 +00:00
* @property string $exception The exception name
* @property string $message The message string
2016-08-22 10:41:05 +00:00
* @property string $code The code of message
**/
2018-05-23 10:14:20 +00:00
class JsonException {
2016-08-22 10:41:05 +00:00
var $exception = NULL;
var $message;
2016-08-22 10:41:05 +00:00
var $code = NULL;
var $file = NULL;
var $line = NULL;
var $trace = NULL;
}