for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare( strict_types = 1 );
namespace WMDE\Fundraising\Frontend\Infrastructure;
/**
* @license GNU GPL v2+
*/
class MailerException extends \RuntimeException {
public function __construct( string $message, \Exception $previous = null ) {
parent::__construct( $message, 0, $previous );
}