AppStateESS/homestead

View on GitHub
class/Exception/MealPlanExistsException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Homestead\Exception;

class MealPlanExistsException extends HMSException {

    public function __construct($message, $code){
        parent::__construct($message, $code);
    }

}