aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/inc/Action/Exception/ActionUserRequiredException.php
blob: 33ff328a18fd040ea1a0889cbbaf8d0cc3c1d101 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace dokuwiki\Action\Exception;

/**
 * Class ActionUserRequiredException
 *
 * Thrown by AbstractUserAction when an action requires that a user is logged
 * in but it isn't. You should not use it.
 *
 * The message will NOT be shown to the enduser
 *
 * @package dokuwiki\Action\Exception
 */
class ActionUserRequiredException extends ActionException
{
}