// Author: Douglas Wilhelm Harder // Copyright (c) 2009 by Douglas Wilhelm Harder. All rights reserved. #ifndef CA_UWATERLOO_ALUMNI_DWHARDER_MATRIX_EXCEPTIONS #define CA_UWATERLOO_ALUMNI_DWHARDER_MATRIX_EXCEPTIONS class invalid_norm { private: int norm; public: invalid_norm( int n ):norm( n ) { // empty constructor } }; class non_convergence { private: int N; public: non_convergence( unsigned int n ):N( n ) { // empty constructor } }; class division_by_zero { // empty class }; #endif