Guest User

Untitled

a guest
May 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. class WebException < Exception
  2. attr_accessor :code
  3.  
  4. def initialize(msg, code)
  5. @code = code
  6. super(msg)
  7. end
  8. end
Add Comment
Please, Sign In to add comment