11 lines
114 B
PHP
11 lines
114 B
PHP
<?php
|
|
namespace nur\b\impl;
|
|
|
|
use Exception;
|
|
|
|
class Two {
|
|
function f() {
|
|
throw new Exception("error");
|
|
}
|
|
}
|