New look for iTop !

SVN:trunk[3601]
This commit is contained in:
Denis Flaven
2015-06-20 15:02:24 +00:00
parent 9ba1914524
commit 19e5130441
338 changed files with 21017 additions and 1449 deletions

View File

@@ -0,0 +1,29 @@
<?php
/* SVN FILE: $Id: HamlException.php 61 2010-04-16 10:19:59Z chris.l.yates $ */
/**
* Haml exception.
* @author Chris Yates <chris.l.yates@gmail.com>
* @copyright Copyright (c) 2010 PBM Web Development
* @license http://phamlp.googlecode.com/files/license.txt
* @package PHamlP
* @subpackage Haml
*/
require_once(dirname(__FILE__).'/../PhamlpException.php');
/**
* Haml exception class.
* @package PHamlP
* @subpackage Haml
*/
class HamlException extends PhamlpException {
/**
* Haml Exception.
* @param string Exception message
* @param array parameters to be applied to the message using <code>strtr</code>.
* @param object object with source code and meta data
*/
public function __construct($message, $params = array(), $object = null) {
parent::__construct('haml', $message, $params, $object);
}
}