for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* @package sitemaker
* @copyright (c) 2015 Daniel A. (blitze)
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*/
namespace blitze\sitemaker\exception;
* InvalidArgument exception
class invalid_argument extends base
{
* Translate this exception
* @param \phpbb\language\language $translator
* @return array|string
* @access public
public function get_message(\phpbb\language\language $translator)
return $this->translate_portions($translator, $this->message_full, 'EXCEPTION_INVALID_ARGUMENT');
}