org.kurento.client.internal.NotEnoughResourcesException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kurento-client Show documentation
Show all versions of kurento-client Show documentation
Kurento Client
The Kurento Client project allows server applications to control media server resources.
package org.kurento.client.internal;
@SuppressWarnings("serial")
public class NotEnoughResourcesException extends RuntimeException {
public NotEnoughResourcesException(String message) {
super(message);
}
public NotEnoughResourcesException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy