<?php
/**
* Exception when something is not found
*
* @since 5.18.0
*/
declare( strict_types=1 );
namespace TEC\Tickets\Exceptions;
use Exception;
/**
* Class Not_Found_Exception
*
* @since 5.18.0
*/
class Not_Found_Exception extends Exception {}