Package org.jclouds.cloudstack.functions
Class CloudStackFallbacks.VoidOnNotFoundOr404OrUnableToFindAccountOwner
- java.lang.Object
-
- org.jclouds.cloudstack.functions.CloudStackFallbacks.VoidOnNotFoundOr404OrUnableToFindAccountOwner
-
- Enclosing class:
- CloudStackFallbacks
public static final class CloudStackFallbacks.VoidOnNotFoundOr404OrUnableToFindAccountOwner extends Object implements Fallback<Void>
CloudStack is currently sending 431 errors with the text "Unable to find account owner for ip ". In this case, we have to ignore as there's no means for us to avoid the problem, or action to take.
-
-
Constructor Summary
Constructors Constructor Description VoidOnNotFoundOr404OrUnableToFindAccountOwner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Void
createOrPropagate(Throwable t)
The exception is provided so that theFallback
implementation can conditionally determine whether to propagate the exception or to attempt to recover.
-
-
-
Method Detail
-
createOrPropagate
public Void createOrPropagate(Throwable t) throws Exception
Description copied from interface:Fallback
The exception is provided so that theFallback
implementation can conditionally determine whether to propagate the exception or to attempt to recover.- Specified by:
createOrPropagate
in interfaceFallback<Void>
- Parameters:
t
- the exception that made the call fail.- Throws:
Exception
-
-