All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.cloudyrock.mongock.LockCheckException Maven / Gradle / Ivy

package com.github.cloudyrock.mongock;

class LockCheckException extends RuntimeException {
  LockCheckException(String s) {
    super(s);
  }

  LockCheckException(InterruptedException ex) {
    super(ex);
  }

  LockCheckException() {
    super();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy