Add Db::QueryBool() and some code style updates

This commit is contained in:
Alex Cabal 2024-09-15 13:50:13 -05:00
parent 854ec6b9df
commit 44901cf3e2
9 changed files with 100 additions and 77 deletions

View file

@ -0,0 +1,15 @@
<?
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();
}
}