FileDocCategorySizeDatePackage
FormatterIndentOverRMarginException.javaAPI DocExample727Tue Dec 08 01:21:00 GMT 1998oisoft.togetherx.scripts.tools

FormatterIndentOverRMarginException.java

// Generated by Together
//---------------------------------------------------------
// Copyright (c) 1998  Object International Software GmbH
// Author: Nick Entin
// Version: 1.00  7/22/98
//---------------------------------------------------------
package oisoft.togetherx.scripts.tools;

public class FormatterIndentOverRMarginException extends IllegalArgumentException {
    public FormatterIndentOverRMarginException () {
        super ();
    }
    public FormatterIndentOverRMarginException (String message) {
        super (message);
    }
    public FormatterIndentOverRMarginException (int indent, int wrap) {
        super ("Indent ["+ indent + "] great than wrap [" + wrap + "] value");
    }
}