]> CyberLeo.Net >> Repos - CDN/status.git/blob - lib/database_check_exception.rb
Naive parallelization of checks to reduce response time
[CDN/status.git] / lib / database_check_exception.rb
1 class DatabaseCheckException < CheckException
2   def self.unhandled_database_type(type)
3     self.new(:unhandled_database_type, type)
4   end
5   def self.maintenance_exception(data)
6     self.new(:maintenance_exception, data)
7   end
8 end