try {
$results = DB::connection("example")
->select(DB::raw("SELECT * FROM unknown_table"))
->first();
// Closures include ->first(), ->get(), ->pluck(), etc.
} catch(IlluminateDatabaseQueryException $ex){
dd($ex->getMessage());
// Note any method of class PDOException can be called on $ex.
}