QueryChanges: Include exception cause in BadRequestException
Change-Id: Ibde8720fe22df5213e4b22481f80085e908e6a46
This commit is contained in:
		| @@ -22,4 +22,12 @@ public class BadRequestException extends RestApiException { | ||||
|   public BadRequestException(String msg) { | ||||
|     super(msg); | ||||
|   } | ||||
|  | ||||
|   /** | ||||
|    * @param msg error text for client describing how request is bad. | ||||
|    * @param cause cause of this exception. | ||||
|    */ | ||||
|   public BadRequestException(String msg, Throwable cause) { | ||||
|     super(msg, cause); | ||||
|   } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Dave Borowitz
					Dave Borowitz