CannotComputeEdgeModelId.java

package org.thewonderlemming.c4plantuml.graphml.model;

/**
 * A wrapper {@link RuntimeException} that allows use within streams.
 *
 * @author thewonderlemming
 *
 */
public class CannotComputeEdgeModelId extends RuntimeException {

    private static final long serialVersionUID = -3426794360660468320L;


    /**
     * Default constructor.
     *
     * @param t the cause of this exception.
     */
    public CannotComputeEdgeModelId(final Throwable t) {
        super(t);
    }
}