Inherited Code Discussions | C++ | HackerRank

Inherited Code

  • + 0 comments

    class BadLengthException{ public: int n; BadLengthException(int e){ n=e; } int what() { return n; } };