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

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