mirror of
https://github.com/moodle/moodle.git
synced 2025-08-09 02:46:40 +02:00

Co-authored-by: Nicholas Hoobin <nicholashoobin@catalyst-au.net> Co-authored-by: Dmitrii Metelkin <dmitriim@catalyst-au.net>
98 lines
2.4 KiB
PHP
98 lines
2.4 KiB
PHP
<?php
|
|
/**
|
|
* CFPropertyList
|
|
* {@link http://developer.apple.com/documentation/Darwin/Reference/ManPages/man5/plist.5.html Property Lists}
|
|
* @author Rodney Rehm <rodney.rehm@medialize.de>
|
|
* @author Christian Kruse <cjk@wwwtech.de>
|
|
* @package plist
|
|
* @version $Id$
|
|
*/
|
|
namespace CFPropertyList;
|
|
|
|
/**
|
|
* Basic Input / Output Exception
|
|
* @author Rodney Rehm <rodney.rehm@medialize.de>
|
|
* @author Christian Kruse <cjk@wwwtech.de>
|
|
* @package plist
|
|
*/
|
|
class IOException extends \Exception {
|
|
/**
|
|
* Flag telling the File could not be found
|
|
*/
|
|
const NOT_FOUND = 1;
|
|
|
|
/**
|
|
* Flag telling the File is not readable
|
|
*/
|
|
const NOT_READABLE = 2;
|
|
|
|
/**
|
|
* Flag telling the File is not writable
|
|
*/
|
|
const NOT_WRITABLE = 3;
|
|
|
|
/**
|
|
* Flag telling there was a read error
|
|
*/
|
|
const READ_ERROR = 4;
|
|
|
|
/**
|
|
* Flag telling there was a read error
|
|
*/
|
|
const WRITE_ERROR = 5;
|
|
|
|
/**
|
|
* Create new IOException
|
|
* @param string $path Source of the problem
|
|
* @param integer $type Type of the problem
|
|
*/
|
|
public function __construct($path, $type=null) {
|
|
parent::__construct( $path, $type );
|
|
}
|
|
|
|
/**
|
|
* Create new FileNotFound-Exception
|
|
* @param string $path Source of the problem
|
|
* @return IOException new FileNotFound-Exception
|
|
*/
|
|
public static function notFound($path) {
|
|
return new IOException( $path, self::NOT_FOUND );
|
|
}
|
|
|
|
/**
|
|
* Create new FileNotReadable-Exception
|
|
* @param string $path Source of the problem
|
|
* @return IOException new FileNotReadable-Exception
|
|
*/
|
|
public static function notReadable($path) {
|
|
return new IOException( $path, self::NOT_READABLE );
|
|
}
|
|
|
|
/**
|
|
* Create new FileNotWritable-Exception
|
|
* @param string $path Source of the problem
|
|
* @return IOException new FileNotWritable-Exception
|
|
*/
|
|
public static function notWritable($path) {
|
|
return new IOException( $path, self::NOT_WRITABLE );
|
|
}
|
|
|
|
/**
|
|
* Create new ReadError-Exception
|
|
* @param string $path Source of the problem
|
|
* @return IOException new ReadError-Exception
|
|
*/
|
|
public static function readError($path) {
|
|
return new IOException( $path, self::READ_ERROR );
|
|
}
|
|
|
|
/**
|
|
* Create new WriteError-Exception
|
|
* @param string $path Source of the problem
|
|
* @return IOException new WriteError-Exception
|
|
*/
|
|
public static function writeError($path) {
|
|
return new IOException( $path, self::WRITE_ERROR );
|
|
}
|
|
}
|
|
|