feature: Add optimistic offline lock (#1306) (#2551)

This commit is contained in:
Eugene
2023-08-27 14:01:46 +03:00
committed by GitHub
parent 70692f647f
commit 8b11e76f46
9 changed files with 399 additions and 0 deletions
@@ -0,0 +1,16 @@
package com.iluwatar.exception;
/**
* Exception happens in application during business-logic execution.
*/
public class ApplicationException extends RuntimeException {
/**
* Inherited constructor with exception message.
*
* @param message exception message
*/
public ApplicationException(String message) {
super(message);
}
}