forked from amazingfate/loongoffice
after
commit fd3888c69abd813462360f49f853fa988764596c
Author: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Mon Sep 12 12:15:35 2022 +0200
move ErrCode to comphelper and improve debug output string
Change-Id: Icd231d52bcd2a9683e472d7a5c70f7e6fbfab379
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139905
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/*
|
|
* This file is part of the LibreOffice project.
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* This file incorporates work covered by the following license notice:
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
* with this work for additional information regarding copyright
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
*/
|
|
|
|
|
|
module com { module sun { module star { module task {
|
|
|
|
|
|
/** IOException that carries a legacy error code (not only I/O related).
|
|
*/
|
|
exception ErrorCodeIOException : com::sun::star::io::IOException
|
|
{
|
|
/** specifies the error code; see comphelper/errcode.hxx for details.
|
|
*/
|
|
|
|
long ErrCode;
|
|
};
|
|
|
|
|
|
}; }; }; };
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|