PHP Classes

File: vendor/league/flysystem/src/NotSupportedException.php

Recommend this page to a friend!
  Classes of Renato Lucena   PHP Pokemon Script   vendor/league/flysystem/src/NotSupportedException.php   Download  
File: vendor/league/flysystem/src/NotSupportedException.php
Role: Class source
Content type: text/plain
Description: Class source
Class: PHP Pokemon Script
Provides an API to manage a database of Pokemons
Author: By
Last change:
Date: 6 years ago
Size: 773 bytes
 

Contents

Class file image Download
<?php

namespace League\Flysystem;

use
RuntimeException;
use
SplFileInfo;

class
NotSupportedException extends RuntimeException
{
   
/**
     * Create a new exception for a link.
     *
     * @param SplFileInfo $file
     *
     * @return static
     */
   
public static function forLink(SplFileInfo $file)
    {
       
$message = 'Links are not supported, encountered link at ';

        return new static(
$message . $file->getPathname());
    }

   
/**
     * Create a new exception for a link.
     *
     * @param string $systemType
     *
     * @return static
     */
   
public static function forFtpSystemType($systemType)
    {
       
$message = "The FTP system type '$systemType' is currently not supported.";

        return new static(
$message);
    }
}