1 /*
2 * Copyright (C) 2013 XStream Committers.
3 * All rights reserved.
4 *
5 * The software in this package is published under the terms of the BSD
6 * style license a copy of which has been included with this distribution in
7 * the LICENSE.txt file.
8 *
9 * Created on 03. December 2013 by Joerg Schaible
10 */
11 package com.thoughtworks.xstream.converters.extended;
12
13 /**
14 * @author Jörg Schaible
15 *
16 * @since 1.4.6
17 */
18 class StackTraceElementFactory15 extends StackTraceElementFactory {
19
20 @Override
21 protected StackTraceElement create(final String declaringClass, final String methodName,
22 final String fileName, final int lineNumber) {
23 return new StackTraceElement(declaringClass, methodName, fileName, lineNumber);
24 }
25 }
26