these should all inherit from X11Error

This commit is contained in:
Richard Ramsden 2012-03-11 22:37:44 -07:00
parent 5663788eb8
commit bbc950ae39

View file

@ -1,8 +1,8 @@
module X11
class DisplayError < X11Error; end
class ConnectionError < DisplayError; end
class AuthorizationError < ConnectionError; end
class ConnectionError < X11Error; end
class AuthorizationError < X11Error; end
class Display