MediaWiki  REL1_23
UserNotLoggedIn.php
Go to the documentation of this file.
00001 <?php
00048 class UserNotLoggedIn extends ErrorPageError {
00049 
00058     public function __construct(
00059         $reasonMsg = 'exception-nologin-text',
00060         $titleMsg = 'exception-nologin',
00061         $params = array()
00062     ) {
00063         parent::__construct( $titleMsg, $reasonMsg, $params );
00064     }
00065 }