View Javadoc
1   /*
2    * Copyright 2013 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  /*
17    Copyright (c) 2004-2011 QOS.ch
18    All rights reserved.
19  
20    Permission is hereby granted, free  of charge, to any person obtaining
21    a  copy  of this  software  and  associated  documentation files  (the
22    "Software"), to  deal in  the Software without  restriction, including
23    without limitation  the rights to  use, copy, modify,  merge, publish,
24    distribute,  sublicense, and/or sell  copies of  the Software,  and to
25    permit persons to whom the Software  is furnished to do so, subject to
26    the following conditions:
27  
28    The  above  copyright  notice  and  this permission  notice  shall  be
29    included in all copies or substantial portions of the Software.
30  
31    THE  SOFTWARE IS  PROVIDED  "AS  IS", WITHOUT  WARRANTY  OF ANY  KIND,
32    EXPRESS OR  IMPLIED, INCLUDING  BUT NOT LIMITED  TO THE  WARRANTIES OF
33    MERCHANTABILITY,    FITNESS    FOR    A   PARTICULAR    PURPOSE    AND
34    NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
35    LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
36    OF CONTRACT, TORT OR OTHERWISE,  ARISING FROM, OUT OF OR IN CONNECTION
37    WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
38  
39   */
40  package io.netty5.util.internal.logging;
41  
42  /**
43   * Holds the results of formatting done by {@link MessageFormatter}.
44   */
45  public final class FormattingTuple {
46  
47      private final String message;
48      private final Throwable throwable;
49  
50      FormattingTuple(String message, Throwable throwable) {
51          this.message = message;
52          this.throwable = throwable;
53      }
54  
55      public String getMessage() {
56          return message;
57      }
58  
59      public Throwable getThrowable() {
60          return throwable;
61      }
62  }