10 lines
199 B
PHP
10 lines
199 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Webkul\Theme\Exceptions;
|
||
|
|
|
||
|
|
class ThemeAlreadyExists extends \Exception {
|
||
|
|
|
||
|
|
public function __construct($theme) {
|
||
|
|
parent::__construct("Theme {$theme->name} already exists", 1);
|
||
|
|
}
|
||
|
|
}
|