001/*-
002 * Copyright 2016 Diamond Light Source Ltd.
003 *
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 */
009
010package org.eclipse.january;
011
012/**
013 * Exception associated with metadata
014 */
015public class MetadataException extends DatasetException {
016        private static final long serialVersionUID = 8699903515753503664L;
017
018        /**
019         * @see Exception#Exception()
020         */
021        public MetadataException() {
022                super();
023        }
024
025        /**
026         * @param message
027         * @see Exception#Exception(String)
028         */
029        public MetadataException(String message) {
030                super(message);
031        }
032
033        /**
034         * @param cause
035         * @see Exception#Exception(Throwable)
036         */
037        public MetadataException(Throwable cause) {
038                super(cause);
039        }
040
041        /**
042         * @param message
043         * @param cause
044         * @see Exception#Exception(String, Throwable)
045         */
046        public MetadataException(String message, Throwable cause) {
047                super(message, cause);
048        }
049}