Sha256: 53ae529370f098cf171302d403e531a7ffe397329cf15e6f8617366bed996e4f
Contents?: true
Size: 689 Bytes
Versions: 6
Compression:
Stored size: 689 Bytes
Contents
# encoding: utf-8 module Jiralicious class JiraError < StandardError; end class AuthenticationError < StandardError; end class NotLoggedIn < AuthenticationError; end class InvalidLogin < AuthenticationError; end # These are in the JIRA API docs. Not sure about specifics, as the docs don't # mention them. Added here for completeness and future implementation. # http://confluence.atlassian.com/display/JIRA/JIRA+REST+API+%28Alpha%29+Tutorial class CookieExpired < AuthenticationError; end class CaptchaRequired < AuthenticationError; end class IssueNotFound < StandardError; end class JqlError < StandardError; end class TransitionError < StandardError; end end
Version data entries
6 entries across 6 versions & 1 rubygems