gflib  1.0
prog/include/err/gfl_FileNotFoundException.h
説明を見る。
00001 #ifndef __GFL_FILE_NOT_FOUND_EXCEPTION_H__
00002 #define __GFL_FILE_NOT_FOUND_EXCEPTION_H__
00003 
00004 #pragma once
00005 
00006 #include <nn.h>
00007 #include <exception>
00008 
00009 #include <err/gfl_IOException.h>
00010 
00011 
00012 namespace gfl{
00013 namespace err{
00014 
00015 
00016 
00020 class FileNotFoundException : public gfl::err::IOException
00021 {
00022 public:
00032   // -----------------------------------------------------------------------
00033   FileNotFoundException( const char * message = NULL, const char *fileName = NULL, u32 line = 0 );
00034 };
00035 
00036 
00037 
00038 } // err
00039 } // gfl
00040 
00041 #endif  // __GFL_FILE_NOT_FOUND_EXCEPTION_H__