Sha256: d9ae96a17ab286f5bd680be6ac5cd607906f54463b3ae7bb50e284ec0552b0b8
Contents?: true
Size: 567 Bytes
Versions: 18
Compression:
Stored size: 567 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 < StandardError 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
18 entries across 16 versions & 3 rubygems