All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.snapscript.core.stack.StackOverflowException Maven / Gradle / Ivy

package org.snapscript.core.stack;

import org.snapscript.core.error.InternalException;

public class StackOverflowException extends InternalException {

   public StackOverflowException(String message) {
      super(message);
   }
   
   public StackOverflowException(Throwable cause) {
      super(cause);
   }
   
   public StackOverflowException(String message, Throwable cause) {
      super(message, cause);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy