org.openbaton.exceptions.DescriptorWrongFormat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of exception Show documentation
Show all versions of exception Show documentation
Openbaton libraries for almost everything
package org.openbaton.exceptions;
/** Created by rvl on 29.09.16. */
public class DescriptorWrongFormat extends Exception {
public DescriptorWrongFormat(String message) {
super(message);
}
public DescriptorWrongFormat(String message, Throwable cause) {
super(message, cause);
}
}