31 lines
575 B
Java
31 lines
575 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*/
|
|
package com.tridium.util.graph;
|
|
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
|
|
public class CyclicGraphException
|
|
extends BajaRuntimeException {
|
|
private Object parent;
|
|
private Object child;
|
|
|
|
public Object getParent() {
|
|
return this.parent;
|
|
}
|
|
|
|
public Object getChild() {
|
|
return this.child;
|
|
}
|
|
|
|
private CyclicGraphException() {
|
|
}
|
|
|
|
CyclicGraphException(String string, Object object, Object object2) {
|
|
super(string);
|
|
this.parent = object;
|
|
this.child = object2;
|
|
}
|
|
}
|
|
|