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