Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
TodoException
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3namespace Attestto\SolanaPhpSdk\Exceptions;
4
5use Exception;
6use Throwable;
7
8class TodoException extends Exception
9{
10    public function __construct($message = "", $code = 0, Throwable $previous = null)
11    {
12        parent::__construct($message . " | Help is appreciated: https://github.com/attestto-com/solana-php-sdk", $code, $previous);
13    }
14}