// 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");
}
}
|