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

io.nflow.engine.service.NflowNotFoundException Maven / Gradle / Ivy

There is a newer version: 10.0.0
Show newest version
package io.nflow.engine.service;

import static java.lang.String.format;

public class NflowNotFoundException extends RuntimeException {

  private static final long serialVersionUID = 1L;

  public NflowNotFoundException(String type, long id, Throwable cause) {
    super(format("%s %s not found", type, id), cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy