~ubuntu-branches/debian/stretch/insubstantial/stretch

« back to all changes in this revision

Viewing changes to flamingo/src/main/java/org/pushingpixels/flamingo/api/bcb/BreadcrumbBarException.java

  • Committer: Package Import Robot
  • Author(s): Felix Natter
  • Date: 2016-01-18 20:58:45 UTC
  • Revision ID: package-import@ubuntu.com-20160118205845-crbmrkda61qsi5qa
Tags: upstream-7.3+dfsg2
ImportĀ upstreamĀ versionĀ 7.3+dfsg2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2003-2010 Flamingo Kirill Grouchnikov
 
3
 * and <a href="http://www.topologi.com">Topologi</a>. 
 
4
 * Contributed by <b>Rick Jelliffe</b> of <b>Topologi</b> 
 
5
 * in January 2006. 
 
6
 *
 
7
 * Redistribution and use in source and binary forms, with or without 
 
8
 * modification, are permitted provided that the following conditions are met:
 
9
 * 
 
10
 *  o Redistributions of source code must retain the above copyright notice, 
 
11
 *    this list of conditions and the following disclaimer. 
 
12
 *     
 
13
 *  o Redistributions in binary form must reproduce the above copyright notice, 
 
14
 *    this list of conditions and the following disclaimer in the documentation 
 
15
 *    and/or other materials provided with the distribution. 
 
16
 *     
 
17
 *  o Neither the name of Flamingo Kirill Grouchnikov Topologi nor the names of 
 
18
 *    its contributors may be used to endorse or promote products derived 
 
19
 *    from this software without specific prior written permission. 
 
20
 *     
 
21
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
 
22
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 
 
23
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
 
24
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 
 
25
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 
 
26
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 
 
27
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 
 
28
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
 
29
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE 
 
30
 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, 
 
31
 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
32
 */
 
33
package org.pushingpixels.flamingo.api.bcb;
 
34
 
 
35
/**
 
36
 * Generic runtime exception for the breadcrumb bar.
 
37
 * 
 
38
 * @author Kirill Grouchnikov
 
39
 */
 
40
public class BreadcrumbBarException extends RuntimeException {
 
41
        /**
 
42
         * Creates the new exception instance.
 
43
         * 
 
44
         * @param cause
 
45
         *            Exception cause.
 
46
         */
 
47
        public BreadcrumbBarException(Throwable cause) {
 
48
                super(cause);
 
49
        }
 
50
}