22 lines
503 B
Java
22 lines
503 B
Java
/*
|
|
* Decompiled with CFR 0.152.
|
|
*
|
|
* Could not load the following classes:
|
|
* javax.baja.sys.BajaRuntimeException
|
|
*/
|
|
package com.tridium.fox.sys;
|
|
|
|
import javax.baja.sys.BajaRuntimeException;
|
|
|
|
public class MismatchedStationNamesException
|
|
extends BajaRuntimeException {
|
|
public String toString() {
|
|
return "Mismatched station names: " + this.getMessage();
|
|
}
|
|
|
|
public MismatchedStationNamesException(String string, String string2) {
|
|
super(string + " != " + string2);
|
|
}
|
|
}
|
|
|