/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * This file is part of SableVM.                             *
 * See the file "LICENSE" for Copyright information and the  *
 * terms and conditions for copying, distribution and        *
 * modification of SableVM.                                  *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

/** 
 * Used by SableVM when configured in inline-threading testing
 * mode. */

package java.lang;

class InliningException extends RuntimeException
{
  InliningException()
  {
    super ();
  }

  InliningException(String msg)
  {
    super (msg);
  }
}
