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

com.enonic.xp.dump.DumpError Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.dump;

public class DumpError
{
    private final String message;

    public DumpError( final String message )
    {
        this.message = message;
    }

    public static DumpError error( final String msg )
    {
        return new DumpError( msg );
    }

    public String getMessage()
    {
        return message;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy