mirror of
https://github.com/standardebooks/web.git
synced 2025-07-05 14:20:29 -04:00
15 lines
439 B
PHP
15 lines
439 B
PHP
<?
|
|
namespace Exceptions;
|
|
|
|
class MultiSelectMethodNotFoundException extends AppException{
|
|
public function __construct(string $class = ''){
|
|
if($class != ''){
|
|
$this->message = 'Multi table select attempted, but class ' . $class . ' doesn\'t have a FromMultiTableRow() method.';
|
|
}
|
|
else{
|
|
$this->message = 'Multi table select attempted, but the class doesn\'t have a FromMultiTableRow() method.';
|
|
}
|
|
|
|
parent::__construct();
|
|
}
|
|
}
|