summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/InvalidLogFormatException.java
blob: ed09b6b0eaa8d6a76f23ab20aa1d33cf478a9864 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2017 Yahoo Holdings. 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 () {
    }
}