java.lang.reflect.Method.getExceptionTypes() Method Example



Description

The java.lang.reflect.Method.getExceptionTypes() method returns an array of Class objects that represent the types of exceptions declared to be thrown by the underlying method represented by this Method object. Returns an array of length 0 if the method declares no exceptions in its throws clause.

Declaration

Following is the declaration for java.lang.reflect.Method.getExceptionTypes() method.

public Class<?>[] getExceptionTypes()

Returns

the exception types declared as being thrown by the method this object represents.

Example

The following example shows the usage of java.lang.reflect.Method.getExceptionTypes() method.

package com.tutorialspoint;

import java.lang.reflect.Method;

public class MethodDemo {

   public static void main(String[] args) {

      Method[] methods = SampleClass.class.getMethods();
      Class[] exceptions = methods[0].getExceptionTypes();
      for (int i = 0; i < exceptions.length; i++) {
         System.out.println(exceptions[i]);
      }
   }
}

class SampleClass {
   private String sampleField;

   public String getSampleField() throws ArrayIndexOutOfBoundsException{
      return sampleField;
   }

   public void setSampleField(String sampleField) {
      this.sampleField = sampleField; 
   } 
}

Let us compile and run the above program, this will produce the following result −

class java.lang.ArrayIndexOutOfBoundsException
java_reflect_method.htm
Advertisements