Sha256: be3425930b0251a6ac3a5829550ec57789cec7aceb28c956394b392348d644ea
Contents?: true
Size: 845 Bytes
Versions: 3
Compression:
Stored size: 845 Bytes
Contents
<?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); } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
frontsau-0.0.3 | lib/Phamlp/haml/HamlException.php |
frontsau-0.0.2 | lib/Phamlp/haml/HamlException.php |
frontsau-0.0.1 | lib/Phamlp/haml/HamlException.php |