Home | History | Annotate | Download | only in exception

Lines Matching refs:general

42      * Pattern used to build the message (general problem description).
44 private final Localizable general;
54 * @param general Message pattern explaining the cause of the error.
58 Localizable general,
60 this(null, specific, general, args);
68 * @param general Message pattern explaining the cause of the error.
73 Localizable general,
77 this.general = general;
82 * @param general Message pattern explaining the cause of the error.
85 public MathIllegalStateException(Localizable general,
87 this(null, null, general, args);
93 * @param general Message pattern explaining the cause of the error.
97 Localizable general,
99 this(cause, null, general, args);
109 return general;
125 return MessageFactory.buildMessage(locale, specific, general, arguments);