summaryrefslogtreecommitdiff
path: root/lib/Minz/ConfigurationException.php
blob: f294c3341b1188d639b34b80b86720133202699e (plain)
1
2
3
4
5
6
7
8
<?php

class Minz_ConfigurationException extends Minz_Exception {
	public function __construct($error, $code = self::ERROR) {
		$message = 'Configuration error: ' . $error;
		parent::__construct($message, $code);
	}
}