Newer
Older
sklauncher / build-tools / src / main / java / com / skcraft / launcher / buildtools / compile / Problem.java
@sk89q sk89q on 21 Jul 2015 543 bytes [Build Tools] build -> compile package
/*
 * SK's Minecraft Launcher
 * Copyright (C) 2010-2014 Albert Pham <http://www.sk89q.com> and contributors
 * Please see LICENSE.txt for license information.
 */

package com.skcraft.launcher.buildtools.compile;

import lombok.Data;

@Data
public class Problem {

    private final String title;
    private final String explanation;

    public Problem(String title, String explanation) {
        this.title = title;
        this.explanation = explanation;
    }

    @Override
    public String toString() {
        return title;
    }

}