You are given a list of events scheduled within a single day. Each event is defined by a start time and an end time in the format HH:MM (24-hour clock). Some events may overlap.
Your task is to write a program that processes the list of events and outputs a new list where all overlapping events are merged into a single continuous event. The resulting list should represent all time intervals during which there is at least one event scheduled, with no overlaps or gaps within a merged interval.
Example:
Given the events:
The merged events would be:
Constraints:
Write a complete, self-contained program that:
Ensure your code is well-structured and includes error handling for potential invalid time formats.