17 lines
381 B
Java
17 lines
381 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.google.common.collect;
|
|
|
|
import com.google.common.annotations.GwtCompatible;
|
|
import javax.annotation.Nullable;
|
|
|
|
@GwtCompatible
|
|
public class ComputationException
|
|
extends RuntimeException {
|
|
private static final long serialVersionUID = 0L;
|
|
|
|
public ComputationException(@Nullable Throwable cause) {
|
|
super(cause);
|
|
}
|
|
}
|