Goiaba - Classe Throwables
A classe Throwables fornece métodos utilitários relacionados à interface Throwable.
Declaração de Classe
A seguir está a declaração para com.google.common.base.Throwables classe -
public final class Throwables
extends Object
Métodos de aula
Sr. Não | Método e Descrição |
---|---|
1 | static List<Throwable> getCausalChain(Throwable throwable) Obtém uma cadeia de causa Throwable como uma lista. |
2 | static Throwable getRootCause(Throwable throwable) Retorna a causa mais interna de descartável. |
3 | static String getStackTraceAsString(Throwable throwable) Retorna uma string contendo o resultado de toString (), seguido pelo rastreamento de pilha recursivo completo de descartável. |
4 | static RuntimeException propagate(Throwable throwable) Propaga que pode ser lançado como está se for uma instância de RuntimeException ou Error, ou então, como último recurso, envolve-o em um RuntimeException e então se propaga. |
5 | static <X extends Throwable> void propagateIfInstanceOf(Throwable throwable, Class<X> declaredType) Propaga que pode ser jogado exatamente como está, se e somente se for uma instância de declaradoTipo. |
6 | static void propagateIfPossible(Throwable throwable) Propaga que pode ser lançado exatamente como está, se e somente se for uma instância de RuntimeException ou Error. |
7 | static <X extends Throwable> void propagateIfPossible(Throwable throwable, Class<X> declaredType) Propaga o que pode ser jogado exatamente como está, se e somente se for uma instância de RuntimeException, Error ou declaradoType. |
8 | static <X1 extends Throwable,X2 extends Throwable>void propagateIfPossible(Throwable throwable, Class<X1> declaredType1, Class<X2> declaredType2) Propaga o que pode ser lançado exatamente como está, se e somente se for uma instância de RuntimeException, Error, declaradoTipo1 ou declaradoTipo2. |
Métodos herdados
Esta classe herda métodos da seguinte classe -
- java.lang.Object
Exemplo de classe Throwables
Crie o seguinte programa java usando qualquer editor de sua escolha em dizer C:/> Guava.
GuavaTester.java
import java.io.IOException;
import com.google.common.base.Objects;
import com.google.common.base.Throwables;
public class GuavaTester {
public static void main(String args[]) {
GuavaTester tester = new GuavaTester();
try {
tester.showcaseThrowables();
} catch (InvalidInputException e) {
//get the root cause
System.out.println(Throwables.getRootCause(e));
} catch (Exception e) {
//get the stack trace in string format
System.out.println(Throwables.getStackTraceAsString(e));
}
try {
tester.showcaseThrowables1();
} catch (Exception e) {
System.out.println(Throwables.getStackTraceAsString(e));
}
}
public void showcaseThrowables() throws InvalidInputException {
try {
sqrt(-3.0);
} catch (Throwable e) {
//check the type of exception and throw it
Throwables.propagateIfInstanceOf(e, InvalidInputException.class);
Throwables.propagate(e);
}
}
public void showcaseThrowables1() {
try {
int[] data = {1,2,3};
getValue(data, 4);
} catch (Throwable e) {
Throwables.propagateIfInstanceOf(e, IndexOutOfBoundsException.class);
Throwables.propagate(e);
}
}
public double sqrt(double input) throws InvalidInputException {
if(input < 0) throw new InvalidInputException();
return Math.sqrt(input);
}
public double getValue(int[] list, int index) throws IndexOutOfBoundsException {
return list[index];
}
public void dummyIO() throws IOException {
throw new IOException();
}
}
class InvalidInputException extends Exception {
}
Verifique o resultado
Compile a classe usando javac compilador da seguinte forma -
C:\Guava>javac GuavaTester.java
Agora execute o GuavaTester para ver o resultado.
C:\Guava>java GuavaTester
Veja o resultado.
InvalidInputException
java.lang.ArrayIndexOutOfBoundsException: 4
at GuavaTester.getValue(GuavaTester.java:52)
at GuavaTester.showcaseThrowables1(GuavaTester.java:38)
at GuavaTester.main(GuavaTester.java:19)