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

23 lines
403 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
**/
2016-08-22 10:41:05 +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;
}
?>