00001 #include "Exception.h" 00002 #include "ETest.h" 00003 00004 00005 int main(int argc,char *argv[]) 00006 { 00009 ETest worker; // constructor throws FileException 00010 try 00011 { 00012 worker.read(); 00013 worker.write(); 00014 worker.check(); 00015 } 00016 catch (Exception& e) 00017 { 00018 } 00019 } 00020 00021
|
|