X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fio%2Fclass_FrameworkFileOutputPointer.php;h=bc69bea5ea240eb053a29c4ae0b60666cfdb2414;hp=8ea8a0d189dba6f7e07539ead08f5e13019f8c04;hb=2c0148a84570f1a8343fa6b98a279e903b3e4fa2;hpb=0d566e56ff27dcbf25a90d513950bbf26fe71422 diff --git a/inc/classes/main/io/class_FrameworkFileOutputPointer.php b/inc/classes/main/io/class_FrameworkFileOutputPointer.php index 8ea8a0d1..bc69bea5 100644 --- a/inc/classes/main/io/class_FrameworkFileOutputPointer.php +++ b/inc/classes/main/io/class_FrameworkFileOutputPointer.php @@ -97,7 +97,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem { * @return mixed The result of fwrite() * @throws NullPointerException If the file pointer instance * is not set by setPointer() - * @throws InvalidFileResourceException If there is being set + * @throws InvalidResourceException If there is being set * an invalid file resource */ public function writeToFile ($dataStream) { @@ -106,7 +106,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem { throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER); } elseif (!is_resource($this->getPointer())) { // Pointer is not a valid resource! - throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER); + throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE); } // Read data from the file pointer and return it @@ -120,7 +120,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem { * @return void * @throws NullPointerException If the file pointer instance * is not set by setPointer() - * @throws InvalidFileResourceException If there is being set + * @throws InvalidResourceException If there is being set */ public function closeFile () { if (is_null($this->getPointer())) { @@ -128,7 +128,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem { throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER); } elseif (!is_resource($this->getPointer())) { // Pointer is not a valid resource! - throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER); + throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE); } // Close the file pointer and reset the instance variable @@ -150,7 +150,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem { $this->filePointer = $filePointer; } else { // Throw exception - throw new InvalidFileResourceException($this, self::EXCEPTION_INVALID_DIRECTORY_POINTER); + throw new InvalidResourceException($this, self::EXCEPTION_INVALID_RESOURCE); } }