Sha256: 953e8d634e208cb918e23b2877b0fea0639dffafd0334b85936716f5d896c4d6
Contents?: true
Size: 563 Bytes
Versions: 53
Compression:
Stored size: 563 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 # 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 # eof
Version data entries
53 entries across 53 versions & 4 rubygems