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

22 lines
400 B
PHP
Executable File

<?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;
}