package com.nanometer.smartlab.exception; public class AlarmException extends RuntimeException { private AlarmCode code; public AlarmException(AlarmCode code, String message) { super(message); this.code = code; } public AlarmException(AlarmCode code) { super(code.getCode()); this.code = code; } public AlarmCode getAlarmCode() { return code; } }