com.github.azbh111.utils.java.stack.model.StackTraceInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.stack.model;
import lombok.Getter;
import lombok.Setter;
/**
* @author pyz
* @date 2019/6/13 8:03 PM
*/
@Getter
@Setter
public class StackTraceInfo {
/**
* 所在的类
*/
private String fileName = "?";
private int lineNumer = -1;
/**
* 类中的方法
*/
private String methodName = "?";
/**
* 调用的方法
*/
private String invokeMethodName = "?";
@Override
public String toString() {
return invokeMethodName + ":" + fileName + ":" + methodName + ":" + lineNumer;
}
}