自分の例外クラスに問題があります: IOExeption
. 通常の例外クラスとは別の出力が必要ですが、以下のコードにもかかわらず、その出力は同じです。
私は何を間違っていますか?
class IOExeption extends Exception
{
public function __toString()
{
$string = '<h1 class="text-warning text-center">';
$string .= $this->getMessage();
$string .= '</h1>';
return $string;
}
}