Soy un estudiante en mi primera clase de programación en C++, y estoy trabajando en un proyecto donde tenemos que crear múltiples clases de excepciones personalizadas, y luego en uno de nuestros controladores de eventos, usar un bloque try/catch
para manejarlas adecuadamente.¿Capturas múltiples excepciones personalizadas? - C++
Mi pregunta es: ¿Cómo atrapo mis excepciones personalizadas múltiples en mi bloque try/catch
? GetMessage()
es un método personalizado en mis clases de excepción que devuelve la explicación de excepción como std::string
. A continuación he incluido todo el código relevante de mi proyecto.
Gracias por su ayuda!
try/catch bloque
// This is in one of my event handlers, newEnd is a wxTextCtrl
try {
first.ValidateData();
newEndT = first.ComputeEndTime();
*newEnd << newEndT;
}
catch (// don't know what do to here) {
wxMessageBox(_(e.GetMessage()),
_("Something Went Wrong!"),
wxOK | wxICON_INFORMATION, this);;
}
ValidateData() Método
void Time::ValidateData()
{
int startHours, startMins, endHours, endMins;
startHours = startTime/MINUTES_TO_HOURS;
startMins = startTime % MINUTES_TO_HOURS;
endHours = endTime/MINUTES_TO_HOURS;
endMins = endTime % MINUTES_TO_HOURS;
if (!(startHours <= HOURS_MAX && startHours >= HOURS_MIN))
throw new HourOutOfRangeException("Beginning Time Hour Out of Range!");
if (!(endHours <= HOURS_MAX && endHours >= HOURS_MIN))
throw new HourOutOfRangeException("Ending Time Hour Out of Range!");
if (!(startMins <= MINUTE_MAX && startMins >= MINUTE_MIN))
throw new MinuteOutOfRangeException("Starting Time Minute Out of Range!");
if (!(endMins <= MINUTE_MAX && endMins >= MINUTE_MIN))
throw new MinuteOutOfRangeException("Ending Time Minute Out of Range!");
if(!(timeDifference <= P_MAX && timeDifference >= P_MIN))
throw new PercentageOutOfRangeException("Percentage Change Out of Range!");
if (!(startTime < endTime))
throw new StartEndException("Start Time Cannot Be Less Than End Time!");
}
Sólo una de mis clases de excepción personalizados, los otros tienen la misma estructura que éste
class HourOutOfRangeException
{
public:
// param constructor
// initializes message to passed paramater
// preconditions - param will be a string
// postconditions - message will be initialized
// params a string
// no return type
HourOutOfRangeException(string pMessage) : message(pMessage) {}
// GetMessage is getter for var message
// params none
// preconditions - none
// postconditions - none
// returns string
string GetMessage() { return message; }
// destructor
~HourOutOfRangeException() {}
private:
string message;
};
No tire punteros, omiten la nueva. – GManNickG