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

io.scalecube.services.examples.exceptions.ServiceAImpl Maven / Gradle / Ivy

package io.scalecube.services.examples.exceptions;

import reactor.core.publisher.Mono;

public class ServiceAImpl implements ServiceA {

  @Override
  public Mono doStuff(int input) {
    if (input == 0) {
      return Mono.error(new ServiceAException("Input is zero"));
    }

    return Mono.just(input);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy