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

com.iodesystems.fn.aspects.Exceptions Maven / Gradle / Ivy

Go to download

Fn is a lazy Java Library that helps utilize some rudimentary functional concepts with more nounular objects

There is a newer version: 3.0.4
Show newest version
package com.iodesystems.fn.aspects;

import java.io.PrintWriter;
import java.io.StringWriter;

public class Exceptions {

  public static String stackString(Throwable e) {
    StringWriter stackString = new StringWriter();
    e.printStackTrace(new PrintWriter(stackString));
    return stackString.toString();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy