Make `ContestedOptimisticLockException` extend `NoStackTraceRuntimeException`
This commit is contained in:
parent
5627209fdd
commit
f5c57e5741
|
@ -5,9 +5,7 @@
|
||||||
|
|
||||||
package org.whispersystems.textsecuregcm.storage;
|
package org.whispersystems.textsecuregcm.storage;
|
||||||
|
|
||||||
public class ContestedOptimisticLockException extends RuntimeException {
|
import org.whispersystems.textsecuregcm.util.NoStackTraceRuntimeException;
|
||||||
|
|
||||||
public ContestedOptimisticLockException() {
|
public class ContestedOptimisticLockException extends NoStackTraceRuntimeException {
|
||||||
super(null, null, true, false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue