1
0
mirror of https://github.com/Rudloff/alltube.git synced 2024-07-01 08:10:54 +02:00
alltube/classes/PasswordException.php

16 lines
187 B
PHP
Raw Normal View History

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