#!perl
$RT::Client::REST::Exception::VERSION
=
'0.72'
;
$VERSION
=
'0.19'
;
'RT::Client::REST::OddNumberOfArgumentsException'
=> {
isa
=> __PACKAGE__,
description
=>
'This means that we wanted name/value pairs'
,
},
'RT::Client::REST::InvaildObjectTypeException'
=> {
isa
=> __PACKAGE__,
description
=>
'Invalid object type was specified'
,
},
'RT::Client::REST::MalformedRTResponseException'
=> {
isa
=> __PACKAGE__,
description
=>
'Malformed RT response received from server'
,
},
'RT::Client::REST::InvalidParameterValueException'
=> {
isa
=> __PACKAGE__,
description
=>
'This happens when you feed me bad values'
,
},
'RT::Client::REST::CannotReadAttachmentException'
=> {
isa
=> __PACKAGE__,
description
=>
'Cannot read attachment'
,
},
'RT::Client::REST::RequiredAttributeUnsetException'
=> {
isa
=> __PACKAGE__,
description
=>
'An operation failed because a required attribute '
.
'was not set in the object'
,
},
'RT::Client::REST::RTException'
=> {
isa
=> __PACKAGE__,
fields
=> [
'code'
],
description
=>
'RT server returned an error code'
,
},
'RT::Client::REST::ObjectNotFoundException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'One or more of the specified objects was not found'
,
},
'RT::Client::REST::CouldNotCreateObjectException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Object could not be created'
,
},
'RT::Client::REST::AuthenticationFailureException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Incorrect username or password'
,
},
'RT::Client::REST::UpdateException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Error updating an object. Virtual exception'
,
},
'RT::Client::REST::UnknownCustomFieldException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Unknown custom field'
,
},
'RT::Client::REST::InvalidQueryException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Invalid query (server could not parse it)'
,
},
'RT::Client::REST::CouldNotSetAttributeException'
=> {
isa
=>
'RT::Client::REST::UpdateException'
,
description
=>
'Attribute could not be updated with a new value'
,
},
'RT::Client::REST::InvalidEmailAddressException'
=> {
isa
=>
'RT::Client::REST::UpdateException'
,
description
=>
'Invalid e-mail address'
,
},
'RT::Client::REST::AlreadyCurrentValueException'
=> {
isa
=>
'RT::Client::REST::UpdateException'
,
description
=>
'The attribute you are trying to update already has '
.
'this value'
,
},
'RT::Client::REST::ImmutableFieldException'
=> {
isa
=>
'RT::Client::REST::UpdateException'
,
description
=>
'Trying to update an immutable field'
,
},
'RT::Client::REST::IllegalValueException'
=> {
isa
=>
'RT::Client::REST::UpdateException'
,
description
=>
'Illegal value'
,
},
'RT::Client::REST::UnauthorizedActionException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'You are not authorized to perform this action'
,
},
'RT::Client::REST::AlreadyTicketOwnerException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'The owner you are trying to assign to a ticket '
.
'is already the owner'
,
},
'RT::Client::REST::RequestTimedOutException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Request timed out'
,
},
'RT::Client::REST::UnknownRTException'
=> {
isa
=>
'RT::Client::REST::RTException'
,
description
=>
'Some other RT error'
,
},
'RT::Client::REST::HTTPException'
=> {
isa
=> __PACKAGE__,
fields
=> [
'code'
],
description
=>
'Error in the underlying protocol (HTTP)'
,
},
);
sub
_get_exception_class {
my
(
$self
,
$content
) =
@_
;
if
(
$content
=~ m/not found|\d+ does not exist|[Ii]nvalid attachment id/) {
return
'RT::Client::REST::ObjectNotFoundException'
;
}
if
(
$content
=~ m/not create/) {
return
'RT::Client::REST::CouldNotCreateObjectException'
;
}
if
(
$content
=~ m/[Uu]nknown custom field/) {
return
'RT::Client::REST::UnknownCustomFieldException'
;
}
if
(
$content
=~ m/[Ii]nvalid query/) {
return
'RT::Client::REST::InvalidQueryException'
;
}
if
(
$content
=~ m/could not be set to/) {
return
'RT::Client::REST::CouldNotSetAttributeException'
;
}
if
(
$content
=~ m/not a valid email address/) {
return
'RT::Client::REST::InvalidEmailAddressException'
;
}
if
(
$content
=~ m/is already the current value/) {
return
'RT::Client::REST::AlreadyCurrentValueException'
;
}
if
(
$content
=~ m/[Ii]mmutable field/) {
return
'RT::Client::REST::ImmutableFieldException'
;
}
if
(
$content
=~ m/[Ii]llegal value/) {
return
'RT::Client::REST::IllegalValueException'
;
}
if
(
$content
=~ m/[Yy]ou are not allowed/) {
return
'RT::Client::REST::UnauthorizedActionException'
;
}
if
(
$content
=~ m/[Yy]ou already own this ticket/ ||
$content
=~ m/[Tt]hat user already owns that ticket/)
{
return
'RT::Client::REST::AlreadyTicketOwnerException'
;
}
return
'RT::Client::REST::UnknownRTException'
;
}
sub
_rt_content_to_exception {
my
(
$self
,
$content
) =
@_
;
(
my
$message
=
$content
) =~ s/^
chomp
(
$message
);
return
$self
->_get_exception_class(
$content
)->new(
message
=>
$message
,
);
}
{
no
strict
'refs'
;
push
@{__PACKAGE__ .
'::ISA'
},
'Exception::Class::Base'
;
}
1;