<?php

namespace MightyPork\Exceptions;

/**
 * Custom exception that happens rarely and does not need to be handled explicitly.
 */
abstract class RuntimeException extends \RuntimeException
{
	use ExceptionConstructorTrait;
}