moved to timer based poll mechanism
[god.git] / lib / god / base.rb
blob6bc42b211a1f10dc6cf55a9436becf698c9f64c8
1 module God
2   
3   class Base
4     def abort(msg)
5       Kernel.abort(msg)
6     end
7     
8     def self.abort(msg)
9       Kernel.abort(msg)
10     end
11   end
12   
13 end