for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\PivotalTracker\Exceptions;
use Exception;
class CouldNotCreateMessage extends Exception
{
public static function invalidStoryType($type)
return new static("Story type `{$type}` is invalid. It should be 'feature', 'bug' or 'chore'");
}