<?php namespace Yansongda\Pay\Exceptions; class InvalidConfigException extends Exception { /** * Bootstrap. * * @author yansongda <me@yansonga.cn> * * @param string $message * @param array|string $raw */ public function __construct($message, $raw = []) { parent::__construct('INVALID_CONFIG: '.$message, $raw, self::INVALID_CONFIG); } }