kenn (Kenn Ejima)
- Login: kenn
- Registered on: 06/24/2012
- Last sign in: 01/09/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/17/2012
-
09:05 AM Ruby Feature #7376 (Rejected): Proposal for new syntax construct to define errors
- =begin
As discussed here - https://gist.github.com/4091803
When we define an error class in a module, we do one of the following two ways.
module App
class Error < StandardError; end
class ServerError < Error; end
...