gnu-social/vendor/stomp-php/stomp-php/src/Exception/StompException.php

22 lines
356 B
PHP
Executable File

<?php
/*
* This file is part of the Stomp package.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Stomp\Exception;
use Exception;
/**
* Base exception for all special stomp exceptions.
*
* @package Stomp
*/
class StompException extends Exception
{
}