The initCause() method of Throwable class is used to initialize the cause of this Throwable with the specified cause passed as a parameter to initCause(). Actually, the cause is throwable that caused this throwable Object to get thrown when an exception occurs. This method can be called only once. Generally, This method is called from within the constructor, or immediately after creating the throwable. If the calling Throwable is created by using Throwable(Throwable) or Throwable(String, Throwable), then this method cannot be called even once.Â
Syntax:
public Throwable initCause?(Throwable cause)
Parameters: This method accepts cause as a parameter which represents the cause of this Throwable.Â
Returns: This method returns a reference to this Throwable instance.Â
Exception: This method throws:
- IllegalArgumentException if cause is this throwable.
- IllegalStateException if this throwable was created with Throwable(Throwable) or Throwable(String, Throwable), or this method has already been called on this throwable.
Below programs illustrate the initCause method of Throwable class:Â
Example 1:Â
Java
// Java program to demonstrate // the initCause() Method. Â
import java.io.*; Â
class GFG { Â
    // Main Method     public static void main(String[] args)         throws Exception     { Â
        try { Â
            testException1();         } Â
        catch (Throwable e) { Â
            System.out.println("Cause : "                                + e.getCause());         }     } Â
    // method which throws Exception     public static void testException1()         throws Exception     { Â
        // ArrayIndexOutOfBoundsException         // This exception will be used as a Cause         // of another exception         ArrayIndexOutOfBoundsException             ae             = new ArrayIndexOutOfBoundsException(); Â
        // create a new Exception         Exception ioe = new Exception(); Â
        // initialize the cause and throw Exception         ioe.initCause(ae); Â
        throw ioe;     } } |
Cause : java.lang.ArrayIndexOutOfBoundsException
Example 2:Â
Java
// Java program to demonstrate // the initCause() Method. Â
import java.io.*; Â
class GFG { Â
    // Main Method     public static void main(String[] args)         throws Exception     { Â
        try { Â
            // add the numbers             addPositiveNumbers( 2 , - 1 );         }         catch (Throwable e) { Â
            System.out.println("Cause : "                                + e.getCause());         }     } Â
    // method which adds two positive number     public static void addPositiveNumbers( int a, int b)         throws Exception     { Â
        // if Numbers are Positive         // than add or throw Exception         if (a < 0 || b < 0 ) { Â
            // create a Exception             // when Numbers are not Positive             // This exception will be used as a Cause             // of another exception             Exception                 ee                 = new Exception("Numbers are not Positive"); Â
            // create a new Exception             Exception anotherEXe = new Exception(); Â
            // initialize the cause and throw Exception             anotherEXe.initCause(ee); Â
            throw anotherEXe;         } Â
        else { Â
            System.out.println(a + b);         }     } } |
Cause : java.lang.Exception: Numbers are not Positive
References: https://docs.oracle.com/javase/10/docs/api/java/lang/Throwable.html#initCause(java.lang.Throwable)