C++自定义异常类

代码样例:

#include <iostream>

using namespace std;

class illegalParameterValue {
public:
    illegalParameterValue() : message("Illegal parameter value") {};

    illegalParameterValue(char *theMessage) { message = theMessage; };

    void outputMessage() { cout << message << '
'; }

public:
    string message;

};

int abc(int a, int b, int c) {
    if (a <= 0 || b <= 0 || c <= 0) {
        throw illegalParameterValue("All parameters should be >0");
    }
    return a + b * c;
}


int main(int argc, char const *argv[]) {
    try {
        cout << abc(2, 0, 4) << '
';
    } catch (illegalParameterValue e) {
        cout << "The parameters to abc were 2, 0, and 4" << '
';
        cout << "illegalParameterValue exception thrown" << '
';
        e.outputMessage();
    }

    return 0;
}
原文地址:https://www.cnblogs.com/renfanzi/p/9355155.html