Searched refs:msg (Results 1 - 14 of 14) sorted by relevance

/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/diff/
H A DDiffException.java74 public DiffException(String msg) argument
76 super(msg);
H A DDifferentiationFailedException.java77 public DifferentiationFailedException(String msg) argument
79 super(msg);
H A DPatchFailedException.java75 public PatchFailedException(String msg) argument
77 super(msg);
/opengrok/jrcs/src/main/java/org/apache/commons/jrcs/rcs/
H A DInvalidFileFormatException.java76 public InvalidFileFormatException(String msg) argument
78 super(msg);
H A DNodeNotFoundException.java67 public NodeNotFoundException(String msg) argument
69 super(msg);
/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryException.java37 * @param msg the message string
39 public HistoryException(String msg) { argument
40 super(msg);
56 * @param msg the message string
59 public HistoryException(String msg, Throwable cause) { argument
60 super(msg, cause);
H A DJDBCHistoryCache.java828 String msg = entry.getMessage();
831 if (msg.length() > MAX_MESSAGE_LENGTH) {
832 msg = truncate(msg, MAX_MESSAGE_LENGTH);
834 addChangeset.setString(5, msg);
/opengrok/src/org/opensolaris/opengrok/util/
H A DStatistics.java38 public void report(Logger log, String msg) { argument
41 log.log(Level.INFO, msg + " (took {0})", time_str);
H A DExecutor.java248 StringBuilder msg = new StringBuilder("Non-zero exit status ")
254 msg.append(": ");
256 msg.append(new String(stderr, 0, MAX_MSG_SZ)).append("...");
258 msg.append(new String(stderr));
261 LOGGER.log(Level.WARNING, msg.toString());
/opengrok/test/org/opensolaris/opengrok/condition/
H A DConditionalRunRule.java117 String msg
123 throw new IllegalArgumentException(String.format(msg, conditionType.getName()));
/opengrok/test/org/opensolaris/opengrok/history/
H A DMercurialRepositoryTest.java315 String msg = he.getMessage();
316 if (msg != null && msg.contains("not found in the repository")) {
/opengrok/src/org/opensolaris/opengrok/management/
H A DAgentIndexRunner.java372 private void doNotify(String type, String msg, Object userdata) { argument
377 Notification notif = new Notification(type, this, sequenceNo, ts, msg);
/opengrok/src/org/opensolaris/opengrok/web/
H A DUtil.java535 String msg = annotation.getDesc(r);
537 if (msg != null) {
538 out.write(msg);
/opengrok/web/js/
H A Dutils.js559 * @param {string} msg message
562 $window.error = function (msg) {
563 var $span = $("<p class='error'>" + msg + "</p>")

Completed in 329 milliseconds