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

org.springframework.versions.LockOwnerException Maven / Gradle / Ivy

package org.springframework.versions;

import org.springframework.core.NestedRuntimeException;
import org.springframework.lang.Nullable;

public class LockOwnerException extends NestedRuntimeException {

    public LockOwnerException(String msg) {
        super(msg);
    }

    public LockOwnerException(@Nullable String msg, @Nullable Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy