<?php
/**
* Hash algorithm exception definition
* @author Marius Zadara <marius@zadara.org>
* @category org.zadara.marius.messagedigester.exceptions
* @copyright (C) 2008, Marius Zadara <marius@zadara.org>
* @license GNU GPL
* @package org.zadara.marius.messagedigester
*
* @final
* @see Exception
*/
final class HashAlgorithmException extends Exception
{
/**
* Exception constructor.
*
* @param string $message The message of the exception
* @return HashAlgorithmException
*/
public function HashAlgorithmException($message)
{
// call the parent constructor
parent::__construct($message);
}
}
?>
|