001    package com.hammurapi.eventbus.tests;
002    
003    import com.hammurapi.eventbus.Handler;
004    
005    public class FaultyHandler {
006            
007            @Handler
008            public void handle(String str) {
009                    throw new RuntimeException("Oops!");
010            }
011            
012    }