sarga/packages/Webkul/Theme/src/Exceptions/ThemeAlreadyExists.php

10 lines
199 B
PHP
Raw Normal View History

2018-08-17 05:48:21 +00:00
<?php
namespace Webkul\Theme\Exceptions;
class ThemeAlreadyExists extends \Exception {
public function __construct($theme) {
parent::__construct("Theme {$theme->name} already exists", 1);
}
}