Lines Matching refs:Exception
8 return new Exception('Not found');
16 return new Exception('Static not found');
26 } catch(Exception $e) {
32 } catch(Exception $e) {
37 throw true ? new Exception('Ternary true 1') : new Exception('Ternary true 2');
38 } catch(Exception $e) {
43 throw false ? new Exception('Ternary false 1') : new Exception('Ternary false 2');
44 } catch(Exception $e) {
49 $exception1 = new Exception('Coalesce non-null 1');
50 $exception2 = new Exception('Coalesce non-null 2');
52 } catch(Exception $e) {
58 $exception2 = new Exception('Coalesce null 2');
60 } catch(Exception $e) {
65 throw $exception = new Exception('Assignment');
66 } catch(Exception $e) {
72 throw $exception ??= new Exception('Coalesce assignment null');
73 } catch(Exception $e) {
78 $exception = new Exception('Coalesce assignment non-null 1');
79 throw $exception ??= new Exception('Coalesce assignment non-null 2');
80 } catch(Exception $e) {
86 ? new Exception('And in conditional 1')
87 : new Exception('And in conditional 2');
92 } catch(Exception $e) {
98 } catch (Exception $e) {
104 } catch (Exception $e) {
110 } catch (Exception $e) {