summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/InvalidLogFormatException.java
blob: a005f5098c8589b37f9d05774ea9c8b007feda5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.log;

/**
 * This (checked) exception is used to flag invalid log messages,
 * primarily for use in the factory methods of LogMessage.
 *
 * @author  <a href="mailto:borud@yahoo-inc.com">Bjorn Borud</a>
 */
public class InvalidLogFormatException extends Exception
{
    public InvalidLogFormatException (String msg) {
        super(msg);
    }

    public InvalidLogFormatException () {
    }
}