Hi,
I'm using a custom validator script to check if an attachment on a transition screen is given.
However, I don't know how to appropriately break up with some error message after detecting a missing attachment file.
it looks something like this:
DefaultTemporaryAttachmentsMonitorLocator loc = new DefaultTemporaryAttachmentsMonitorLocator()
TemporaryAttachmentsMonitor tam = loc.get(true)
Collection<TemporaryAttachment> tas = tam.getByIssueId(issue.getId())
if ( tas == null || tas.isEmpty() ) {
return "Error message"
}
instead of returning the error as string, I also tried to
InvalidInputException iie = new InvalidInputException("missing file attachment", "attach a file...")
throw iie
which breaks the whole script up with a null pointer exception instead of my desired error message
What do I need to do to make it work ?
Thanks in advance
Thanks !
I looked for it but didn't find the wiki page you showed me. It will be very useful in the future.
You just need to set the variable invalidInputException to an instance of InvalidInputException . Note the case in those two strings.
...
invalidInputException = new InvalidInputException("attach a file...")
If you use the two-arg format the first arg should be a field ID.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.