All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arextest.schedule.exceptions.PlanRunningException Maven / Gradle / Ivy

There is a newer version: 2.0.4
Show newest version
package com.arextest.schedule.exceptions;

import lombok.Getter;

/**
 * Created by Qzmo on 2023/7/27
 */
public class PlanRunningException extends Exception {

  @Getter
  private final int code;
  @Getter
  private final String message;

  public PlanRunningException(int code, String message) {
    super(message);
    this.code = code;
    this.message = message;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy