hedronium\Jables\exceptions\NameCollisionException::__construct PHP 메소드

__construct() 공개 메소드

public __construct ( $file_1, $file_2 )
    public function __construct($file_1, $file_2)
    {
        $this->file_1 = $file_1;
        $this->file_2 = $file_2;
        parent::__construct("Two files result in the same table name:\n{$file_1}\n{$file_2}");
    }
NameCollisionException