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

com.codepoetics.fluvius.exceptions.TraceMapNotFoundException Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package com.codepoetics.fluvius.exceptions;

import java.util.UUID;

public final class TraceMapNotFoundException extends RuntimeException {

  public static TraceMapNotFoundException forFlow(UUID flowId) {
    return new TraceMapNotFoundException(String.format("Trace map not found for flow %s", flowId));
  }

  private TraceMapNotFoundException(String message) {
    super(message);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy