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

org.camunda.community.migration.converter.cli.PrintNotificationServiceImpl Maven / Gradle / Ivy

There is a newer version: 0.10.3
Show newest version
package org.camunda.community.migration.converter.cli;

import static org.camunda.community.migration.converter.cli.ConvertCommand.*;

import org.camunda.community.migration.converter.NotificationService;

public class PrintNotificationServiceImpl implements NotificationService {
  @Override
  public void notify(Object object) {
    if (object instanceof RuntimeException) {
      throw (RuntimeException) object;
    } else {
      LOG_CLI.info("{}", object);
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy