File: invalid_timezone_identifier.rb

package info (click to toggle)
mhc 1.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 2,452 kB
  • sloc: ruby: 12,700; lisp: 7,577; makefile: 70; sh: 68
file content (20 lines) | stat: -rw-r--r-- 837 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module RiCal
  #- ©2009 Rick DeNatale
  #- All rights reserved. Refer to the file README.txt for the license
  #
  # An InvalidTimezoneIdentifier error is raised when a DATETIME property with an invalid timezone is
  # involved in a timezone conversion operation
  #
  # Rather than attempting to detect invalid timezones immediately the detection is deferred to avoid problems
  # such as importing a calendar which has forward reference to VTIMEZONE components.
  class InvalidTimezoneIdentifier < StandardError
    
    def self.not_found_in_calendar(identifier) #:nodoc:
      new("#{identifier.inspect} is not the identifier of a VTIMEZONE component of this calendar")
    end
    
    def self.invalid_tzinfo_identifier(identifier) #:nodoc:
      new("#{identifier.inspect} is not known to the tzinfo database")
    end
  end
end