AOEpeople/StackFormation

View on GitHub
src/StackFormation/Exception/StackNotFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace StackFormation\Exception;

class StackNotFoundException extends \Exception
{

    public function __construct($stackName, \Exception $previous=null)
    {
        $message = "Stack '$stackName' not found";
        parent::__construct($message, 0, $previous);
    }

}