14 lines
261 B
Ruby
14 lines
261 B
Ruby
# -*- coding: utf-8 -*-
|
|
#
|
|
# CFFormatError implementation
|
|
#
|
|
# Author:: Christian Kruse (mailto:cjk@wwwtech.de)
|
|
# Copyright:: Copyright (c) 2010
|
|
# License:: MIT License
|
|
|
|
|
|
# Exception thrown when format errors occur
|
|
class CFFormatError < Exception
|
|
end
|
|
|
|
# eof
|