alltube/classes/PasswordException.php

16 lines
187 B
PHP
Raw Normal View History

<?php
/**
2016-10-20 21:03:13 +00:00
* PasswordException class.
*/
2016-12-05 12:12:27 +00:00
namespace Alltube;
use Exception;
/**
2016-10-20 21:03:13 +00:00
* Exception thrown when a video requires a password.
*/
class PasswordException extends Exception
{
}