Questions tagged [validationexception]

19 questions
0
votes
1 answer

What is the validation expression to allow english and arabic and spaces in a textbox

I need to validate English / Arabic letters only with spaces in a textbox. I used below validation expressions, it accepts English / Arabic text, But it did not accept any spaces. Can anyone give me the right…
Arwa
  • 3
  • 7
0
votes
0 answers

ValidationException error, AttributeValue cannot be empty string

I'm writing a program that downloads tweets from twitter and stores the information in DynamoDB. It uses the requests python library, API Gateway and AWS Lambda to communicate with the database. For about three quarters of the tweets, I have no…
0
votes
1 answer

ValidationException errors in errors

In grails 2.3, I want to send customized error message by JSON. But when I use class ApiError { String message String status Exception error } and try to parse it as JSON I get: (I ommit irrevelant message and status) "error": { …
Michal_Szulc
  • 4,097
  • 6
  • 32
  • 59
0
votes
0 answers

Receiving Unhandled exception and unreachable catch block in the same line of java code

In the following code I receive 2 errors: Unhandled exception type ValidationException at line xxx Unreachable catch block for ValidationException. This exception is never thrown from the try statement body at line yyy public void…
1
2