mirror of
https://github.com/Halofreak1990/XFXFramework
synced 2024-12-26 13:49:34 +01:00
Added 'ValueTypes' Single and Double Added some components in the new System::Net namespace Added the Console class, which can be used to output text to the screen Updated a bunch of structs to include the IComparable and IEquatable interfaces, and inheritance from Object to allow better interoperability between container classes and other types Replaced all exception handling code with a report to stdout.txt - this will, I hope, eventually be reversed, but as of yet, there is no support for exceptions. BEWARE! Even though all libraries correctly compile, you cannot use any class/structure that inherits from a template class, because stupid G++ wants to include exception handling for each template.
59 lines
1.6 KiB
C++
59 lines
1.6 KiB
C++
/********************************************************
|
|
* IOException.h *
|
|
* *
|
|
* XFX IOException definition file *
|
|
* Copyright © XFX Team. All Rights Reserved *
|
|
********************************************************/
|
|
#ifndef _SYSTEM_IO_IOEXCEPTION_
|
|
#define _SYSTEM_IO_IOEXCEPTION_
|
|
|
|
#include "../Exception.h"
|
|
|
|
namespace System
|
|
{
|
|
namespace IO
|
|
{
|
|
// The exception that is thrown when an I/O error occurs.
|
|
class IOException : public SystemException
|
|
{
|
|
public:
|
|
IOException();
|
|
IOException(char* message);
|
|
};
|
|
|
|
// The exception that is thrown when part of a file or directory cannot be found.
|
|
class DirectoryNotFoundException : public IOException
|
|
{
|
|
public:
|
|
DirectoryNotFoundException();
|
|
DirectoryNotFoundException(char* message);
|
|
};
|
|
|
|
// The exception that is thrown when reading is attempted past the end of a stream.
|
|
class EndOfStreamException : public IOException
|
|
{
|
|
public:
|
|
EndOfStreamException();
|
|
EndOfStreamException(char* message);
|
|
};
|
|
|
|
// The exception that is thrown when an attempt to access a file that does not exist on disk fails.
|
|
class FileNotFoundException : public IOException
|
|
{
|
|
public:
|
|
FileNotFoundException();
|
|
FileNotFoundException(char* message);
|
|
};
|
|
|
|
// The exception that is thrown when a pathname or filename is longer than the system-defined maximum length.
|
|
class PathTooLongException : public IOException
|
|
{
|
|
public:
|
|
PathTooLongException();
|
|
PathTooLongException(char* message);
|
|
};
|
|
}
|
|
}
|
|
|
|
#endif //_SYSTEM_IO_IOEXCEPTION_
|