Scroll to navigation

RT::Client::REST::Exception(3pm) User Contributed Perl Documentation RT::Client::REST::Exception(3pm)

NAME

RT::Client::REST::Exception - Exceptions thrown by RT::Client::REST

VERSION

version 0.72

DESCRIPTION

These are exceptions that are thrown by various RT::Client::REST methods.

EXCEPTION HIERARCHY

This exception is virtual -- it is never thrown. It is used to group all the exceptions in this category.
This means that the method you called wants key-value pairs.
Thrown when you specify an invalid type to "show()", "edit()", or "search()" methods.
An operation failed because a required attribute was not set in the object.
RT server sent response that we cannot parse. This may very well mean a bug in this client, so if you get this exception, some debug information mailed to the author would be appreciated.
Invalid value for comments, link types, object IDs, etc.
Cannot read attachment (thrown from methods "comment()" and "correspond").
This is a virtual exception and is never thrown. It is used to group exceptions thrown because RT server returns an error.
One or more of the specified objects was not found.
Incorrect username or password.
This is a virtual exception. It is used to group exceptions thrown when RT server returns an error trying to update an object.
For one or another reason, attribute could not be updated with the new value.
Invalid e-mail address specified.
The attribute you are trying to update already has this value. I do not know why RT insists on treating this as an exception, but since it does so, so should the client. You can probably safely catch and throw away this exception in your code.
Trying to update an immutable field (such as "last_updated", for example).
Illegal value for attribute was specified.
Unknown custom field was specified in the request.
Server could not parse the search query.
You are not authorized to perform this action.
The owner you are trying to assign to a ticket is already the owner. This exception is usually thrown by methods "take()", "untake", and "steal", if the operation is a noop.
Request timed out.
Some other RT exception that the driver cannot recognize.

METHODS

_get_exception_class
Figure out exception class based on content returned by RT.
_rt_content_to_exception
Translate error string returned by RT server into an exception object ready to be thrown.

SEE ALSO

Exception::Class, RT::Client::REST.

AUTHOR

Dean Hamstead <dean@fragfest.com.au>

COPYRIGHT AND LICENSE

This software is copyright (c) 2023, 2020 by Dmitri Tikhonov.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2023-12-21 perl v5.36.0