<?php
/**
* Internal Messages Of Exceptions
* @copyright Copyright (c) 2012, PWF
* @license http://phpwebframework.com/License
* @version PWF_0.3.0
*/
class _Exception_Messages
{
public static $fileNotFound = "File not found";
public static $fileOpenFailure = "File Open Failure";
public static $fileReadFailure = "File Read Failure";
public static $fileCloseFailure = "File Close Failure";
public static $directoryNotFound = "Directory not found";
public static $preparedStatementMismatch = "Prepared statement parameters size mismatch ";
public static $dbWithoutUsername = "You havenât provided username for db object in properties ";
public static $dbWithoutPassword = "You havenât provided password for db object in properties ";
public static $dbWithoutDatabase = "You havenât provided database for db object in properties ";
public static $dbWithoutProperties = "You havenât provided constructors for db object in properties ";
public static $templateFileDontExists = "Temlate file ? doesn't exist";
public static $staticPropertyBinfFailed = "Caching Bind operation failed for property ? Of class ? . Check that the class is a Controller and the property is public and static and start with _ (meaning that PWF will not use for application scope caching) ";
}
?>