com.spotify.mobius.rx2.UnrecoverableIncomingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mobius-rx2 Show documentation
Show all versions of mobius-rx2 Show documentation
RxJava2 utilities for use with Mobius
The newest version!
/*
* -\-\-
* Mobius
* --
* Copyright (c) 2017-2020 Spotify AB
* --
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* -/-/-
*/
package com.spotify.mobius.rx2;
import java.util.Arrays;
/**
* Used to indicate that an {@link RxMobiusLoop} transformer has received an {@link
* io.reactivex.Observer#onError(Throwable)} call, which is illegal. This exception means Mobius is
* in an undefined state and should be considered a fatal programmer error. Do not try to handle
* this exception in your code, ensure it never gets thrown.
*/
public class UnrecoverableIncomingException extends RuntimeException {
public UnrecoverableIncomingException(Throwable throwable) {
super(
"PROGRAMMER ERROR: Mobius cannot recover from this exception; ensure your event sources don't invoke onError",
throwable);
}
@Override
public boolean equals(Object o) {
if (!(o instanceof UnrecoverableIncomingException)) {
return false;
}
final UnrecoverableIncomingException other = (UnrecoverableIncomingException) o;
return o == this
|| (getCause() == null && other.getCause() == null)
|| getCause().equals(other.getCause());
}
@Override
public int hashCode() {
return Arrays.hashCode(new Object[] {getCause()});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy