com.metaeffekt.artifact.analysis.scancode.UUIDNotFoundException Maven / Gradle / Ivy
package com.metaeffekt.artifact.analysis.scancode;
/**
* If the service does not find the uuid it is asked for. It will answer with http
* status code 404.
* In that case we throw an UUIDNotFoundException
so that a client
* can handle this.
*/
public class UUIDNotFoundException extends Throwable {
public UUIDNotFoundException(String detail) {
super(detail);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy