Skip to content

Instantly share code, notes, and snippets.

@pobo380
Created September 28, 2013 06:07
Show Gist options
  • Save pobo380/6738976 to your computer and use it in GitHub Desktop.
Save pobo380/6738976 to your computer and use it in GitHub Desktop.
例外クラスの一覧を得る
Object.constants.sort.map{|e| Object.const_get(e.to_s) }.select{|e| e.kind_of?(Module) and e.ancestors.include?(Exception) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment