PHP Classes

File: _exceptions/HashAlgortihmException.excpt.php

Recommend this page to a friend!
  Classes of Marius Zadara   Message Digest   _exceptions/HashAlgortihmException.excpt.php   Download  
File: _exceptions/HashAlgortihmException.excpt.php
Role: Class source
Content type: text/plain
Description: Hash algorithm exception
Class: Message Digest
Generate message digests with hashing algorithms
Author: By
Last change:
Date: 16 years ago
Size: 662 bytes
 

Contents

Class file image Download
<?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);
    }
}


?>