struct Error { int errorcode; Error(int i): errorcode(i) {} virtual void print() = 0; };