function($name, $arguments)
{
$class = \get_class($this);
throw new \Exception(
sprintf(
X::_("Wrong method used for the class %s: %s with the following arguments:"),
$class,
$name,
implode(', ', $arguments)
)
);
}