puts Object.constants.find_all {|c| (cc = Object.const_get(c)) && cc.respond_to?(:ancestors) && cc.ancestors.include?(StandardError) }.sort
2012/01/02: 個人的にはStandardErrorを親クラスに持つより、Exceptionを親クラスに持つものを調べたほうが便利っすね。