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