Ignore:
Timestamp:
11/17/10 14:40:14 (14 years ago)
Author:
hozdoba
Message:

mise à jour

File:
1 edited

Legend:

Unmodified
Added
Removed
  • XMLIO_V2/dev/dev_rv/src/XMLIO/exception.hpp

    r131 r137  
    3434         { /* Ne rien faire de plus */ } 
    3535 
    36          ~XMLIOException() throw() 
    37          { /* Ne rien faire de plus */ } 
     36         ~XMLIOException(void) throw() 
     37         { std::cerr << displayText() << std::endl; } 
    3838 
    3939         XMLIOException& operator = (const XMLIOException& _exc) 
     
    4343         virtual const char* className(void) const throw() { return (typeid(*this).name()); } 
    4444 
    45          virtual Exception* clone(void) const {   return new XMLIOException(*this); } 
     45         virtual Exception* clone(void) const { return new XMLIOException(*this); } 
    4646         virtual void rethrow(void) const { throw *this; } 
    4747 
     
    5757         const char* name(void) const throw() 
    5858         { return ("XMLIO>UndefinedValueException"); } 
     59 
     60         ~XMLIOUndefinedValueException(void) throw() 
     61         { std::cerr << displayText() << std::endl; } 
    5962 
    6063   }; //class XMLIOUndefinedException 
Note: See TracChangeset for help on using the changeset viewer.