summaryrefslogtreecommitdiffstats
path: root/vespalog/src/main/java/com/yahoo/log/InvalidLogFormatException.java
blob: 37d43b37952ac7627b432cd2516ec03f4dc6c325 (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  Bjorn Borud
 */
public class InvalidLogFormatException extends Exception
{
    public InvalidLogFormatException (String msg) {
        super(msg);
    }

    public InvalidLogFormatException () {
    }
}