001// --- BEGIN LICENSE BLOCK --- 002/* 003 * Copyright (c) 2009-2013, Mikio L. Braun 004 * 2013, Alexander Sehlström 005 * 006 * All rights reserved. 007 * 008 * Redistribution and use in source and binary forms, with or without 009 * modification, are permitted provided that the following conditions are 010 * met: 011 * 012 * * Redistributions of source code must retain the above copyright 013 * notice, this list of conditions and the following disclaimer. 014 * 015 * * Redistributions in binary form must reproduce the above 016 * copyright notice, this list of conditions and the following 017 * disclaimer in the documentation and/or other materials provided 018 * with the distribution. 019 * 020 * * Neither the name of the Technische Universität Berlin nor the 021 * names of its contributors may be used to endorse or promote 022 * products derived from this software without specific prior 023 * written permission. 024 * 025 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 026 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 027 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 028 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 029 * HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 030 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 031 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 032 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 033 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 034 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 035 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 036 */ 037// --- END LICENSE BLOCK --- 038 039package org.jblas.exceptions; 040 041public class NoEigenResultException extends RuntimeException { 042 public NoEigenResultException(String message) { 043 super(message); 044 } 045}