Changeset a0f3e32 for src/orm/ormrecord.h
- Timestamp:
- 06/23/11 14:23:57 (12 years ago)
- Branches:
- master, qt5
- Children:
- 5438514
- Parents:
- f09a1b9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/orm/ormrecord.h
rf09a1b9 ra0f3e32 31 31 { 32 32 public: 33 OrmException(const QString& text) : mText(text) {} ;34 virtual ~OrmException(){} ;33 OrmException(const QString& text) : mText(text) {} 34 virtual ~OrmException(){} 35 35 virtual const QString& text() const { return mText; } 36 36 private: … … 41 41 { 42 42 public: 43 OrmNoObjectException() : OrmException("No object exception"){} ;44 ~OrmNoObjectException(){} ;43 OrmNoObjectException() : OrmException("No object exception"){} 44 ~OrmNoObjectException(){} 45 45 }; 46 46 … … 48 48 { 49 49 public: 50 OrmSqlException(const QString& text) : OrmException( QString("Sql error: ") + text ) {} ;51 ~OrmSqlException(){} ;50 OrmSqlException(const QString& text) : OrmException( QString("Sql error: ") + text ) {} 51 ~OrmSqlException(){} 52 52 }; 53 53
Note: See TracChangeset
for help on using the changeset viewer.