
com.github.fridujo.automocker.utils.LamdaLuggageException Maven / Gradle / Ivy
The newest version!
package com.github.fridujo.automocker.utils;
@SuppressWarnings("serial")
public class LamdaLuggageException extends RuntimeException {
LamdaLuggageException(Exception cause) {
super(cause);
}
public static RuntimeException wrap(Exception e) {
if (e instanceof RuntimeException) {
return (RuntimeException) e;
} else {
return new LamdaLuggageException(e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy