芝麻web文件管理V1.00
编辑当前文件:/home/ezdajrnh/public_html/wp-content/plugins/google-listings-and-ads/src/View/ViewException.php
getMessage() ); return new static( $message, (int) $exception->getCode(), $exception ); } /** * Create a new instance of the exception for a file that is not accessible * or not readable. * * @param string $path Path of the file that is not accessible or not * readable. * * @return static */ public static function invalid_path( $path ) { $message = sprintf( 'The view path "%s" is not accessible or readable.', $path ); return new static( $message ); } /** * Create a new instance of the exception for a context property that is * not recognized. * * @param string $property Name of the context property that was not recognized. * * @return static */ public static function invalid_context_property( string $property ) { $message = sprintf( 'The property "%s" could not be found within the context of the currently rendered view.', $property ); return new static( $message ); } }