• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openmrs / openmrs-core / 10621293521

29 Aug 2024 07:19PM CUT coverage: 64.73% (-0.003%) from 64.733%
10621293521

push

github

web-flow
maven(deps): bump net.bytebuddy:byte-buddy from 1.15.0 to 1.15.1 (#4735)

Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.0 to 1.15.1.
- [Release notes](https://github.com/raphw/byte-buddy/releases)
- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)
- [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.0...byte-buddy-1.15.1)

---
updated-dependencies:
- dependency-name: net.bytebuddy:byte-buddy
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

22959 of 35469 relevant lines covered (64.73%)

0.65 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/api/src/main/java/org/openmrs/api/CannotUpdateObjectInUseException.java
1
/**
2
 * This Source Code Form is subject to the terms of the Mozilla Public License,
3
 * v. 2.0. If a copy of the MPL was not distributed with this file, You can
4
 * obtain one at http://mozilla.org/MPL/2.0/. OpenMRS is also distributed under
5
 * the terms of the Healthcare Disclaimer located at http://openmrs.org/license.
6
 * 
7
 * Copyright (C) OpenMRS Inc. OpenMRS is a registered trademark and the OpenMRS
8
 * graphic logo is a trademark of OpenMRS Inc.
9
 */
10
package org.openmrs.api;
11

12
/**
13
 * An instance of this exception is thrown if an update operation is attempted on an object that is
14
 * referenced by others, typically this should be thrown when altering an existing object is
15
 * detrimental to the integrity of objects referencing it or any other existing associated data.
16
 *
17
 * @since 2.1
18
 */
19
public class CannotUpdateObjectInUseException extends InvalidOperationOnObjectException {
20
        
21
        public CannotUpdateObjectInUseException(String message) {
22
                super(message);
×
23
        }
×
24
        
25
        public CannotUpdateObjectInUseException(String message, Throwable cause) {
26
                super(message, cause);
×
27
        }
×
28
        
29
        public CannotUpdateObjectInUseException(String messageKey, Object[] parameters) {
30
                super(messageKey, parameters);
×
31
        }
×
32
        
33
        /**
34
         * @see InvalidOperationOnObjectException#InvalidOperationOnObjectException(Class)
35
         */
36
        public CannotUpdateObjectInUseException(Class clazz) {
37
                super(clazz);
×
38
        }
×
39
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc