Sha256: 3997a20741aba857043aa40fe9d024a5d061c7340df94395ee799df1835d4730
Contents?: true
Size: 610 Bytes
Versions: 39
Compression:
Stored size: 610 Bytes
Contents
# -*- coding: utf-8 -*- # # Exceptions used: # CFPlistError:: General base exception # CFFormatError:: Format error # CFTypeError:: Type error # # Easy and simple :-) # # Author:: Christian Kruse (mailto:cjk@wwwtech.de) # Copyright:: Copyright (c) 2010 # License:: MIT License module CFPropertyList228 # general plist error. All exceptions thrown are derived from this class. class CFPlistError < Exception end # Exception thrown when format errors occur class CFFormatError < CFPlistError end # Exception thrown when type errors occur class CFTypeError < CFPlistError end end # eof
Version data entries
39 entries across 39 versions & 1 rubygems