summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML/Error/NoState.php
blob: 1c92da92728a3d8086f484fb8f9f383903e58294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

/**
 * Exception which will show a page telling the user
 * that we don't know what to do.
 *
 * @package SimpleSAMLphp
 */
class SimpleSAML_Error_NoState extends SimpleSAML_Error_Error {


	/**
	 * Create the error
	 */
	public function __construct() {
		$this->includeTemplate = 'core:no_state.tpl.php';
		parent::__construct('NOSTATE');
	}

}