The short answer is that nothing happens.
The slightly long answer is that if there is nothing waiting on the monitor, there is nothing for the notification to be delivered to, and the notification is silently discarded.
The monitor that you keep hearing about is just a technical term for the primitive locking mechanism that you are using. (IIRC the term was coined by the inventor of the monitor concept - Tony Hoare - who did a lot of the seminal work on concurrency.)
The idea is that there certain regions of code (in Java, they are synchronized method bodies and synchronized blocks) which a thread can only execute if it holds an exclusive lock. Other threads wanting to enter these regions have to wait for the lock to become available. The wait and notify methods provide an additional signalling mechanism that is used in conjunction with monitors.